Update of /cvsroot/subtrick/TiTan/src/boot/kernelinit
In directory usw-pr-cvs1:/tmp/cvs-serv15092
Modified Files:
kernelinit.s
Log Message:
Defined Partition path for sloader
Index: kernelinit.s
===================================================================
RCS file: /cvsroot/subtrick/TiTan/src/boot/kernelinit/kernelinit.s,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** kernelinit.s 25 Aug 2002 11:49:28 -0000 1.1
--- kernelinit.s 25 Aug 2002 15:41:36 -0000 1.2
***************
*** 11,12 ****
--- 11,24 ----
%define OFF_KINIT 0x0000 ; offset buffer to read the kernel init into
%define SEG_KINIT 0x0700 ; Segment buffer to read the kernel init into
+
+ ;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
+ ; Partion Information
+ ; For Now This Info will have to be written manual until i automate it
+ ; You need to write Head, Cylinder, Sector of the partion that sloader will Reside
+ ; You can get this info from the partion table
+ ; Good luck.
+
+ %define PAR_CYL 0
+ %define PAR_SEC 2 ; Sector Starts from 1 not 0
+ %define PAR_HEAD 0
+ ;_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|