# HG changeset patch # User Josef 'Jeff' Sipek # Date 1565115182 14400 # Tue Aug 06 14:13:02 2019 -0400 # Node ID e3b56f0f17e933156b1546a9bd92b71a30d384f8 # Parent afe9a4eaa767cdfa849e5f5199a3eb339c2c39db loader: use sastart's ORB & IRB structs Signed-off-by: Josef 'Jeff' Sipek diff --git a/loader/loader/loader.h b/loader/loader/loader.h --- a/loader/loader/loader.h +++ b/loader/loader/loader.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009-2011 Josef 'Jeff' Sipek + * Copyright (c) 2009-2019 Josef 'Jeff' Sipek * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -23,6 +23,8 @@ #ifndef __LOADER_H #define __LOADER_H +#include + /* * "Config" values */ @@ -52,9 +54,6 @@ extern void load_nucleus(void); -extern struct orb orb; -extern struct irb irb; - /* * EDF related structs & macros */ diff --git a/loader/loader/loader_c.c b/loader/loader/loader_c.c --- a/loader/loader/loader_c.c +++ b/loader/loader/loader_c.c @@ -28,15 +28,6 @@ static unsigned char search_data[5]; static struct ccw ccw[4]; -struct orb orb = { - .param = 0x12345678, - .f = 1, - .lpm = 0xff, - .addr = 0xffffffff, -}; - -struct irb irb; - static struct psw io_psw_template = { .ea = 1, .ba = 1,