Hi,
I have written a simple bootloader which prints 'A' and copies the code at sect2 to mem at 1000:0h. The bootloader is
given below:
;creates a boot loader and jumps to kernel
.MODEL TINY
.CODE
ORG 0
bpbBytesPerSector DW 512
bpbSectorsPerCluster DB 1
bpbReservedSectors DW 1
bpbNumberOfFATs DB 2
bpbRootEntries DW 224
bpbTotalSectors DW 2880
bpbMedia DB 0F0h
bpbSectorsPerFAT DW 9
bpbSectorsPerTrack DW 18
bpbHeadsPerCylinder DW 2
bpbHiddenSectors DD 0
bpbTotalSectorsBig DD 0
bsDriveNumber DB 0
bsUnused DB 0
bsExtBootSignature DB 29h
bsSerialNumber DD 0a0a1a2a3h
bsVolumeLabel DB "MOS FLOPPY "
bsFileSystem DB "FAT12 "
;code branch
boot0: jmp short boot1
boot1: cli ;disable maskable interrupts
xor di,di
mov ss,di
mov sp,7C00h ;SS:SP = 0000:7C00
sti
;---------------------- displays a character 'A'
cld
mov ax,0B800h
mov es,ax
xor di,di
mov ax,1F41h
stosw
;-----------------------
mov ah, 0
int 16h
;-----------------reset floppy
Reset:
mov ah,0; reset floppy disk function
mov dl, 0
int 13h
jc Reset; If carry set, error. Try again
;---------------
mov ax, 1000h; read sector into address 0x1000:0
mov es, ax
xor bx, bx
mov ah, 2; read sector function
mov al, 1; read 1 sector
mov ch,1;
mov cl,2; reading 2nd sector
mov dh, 0
mov dl, 0
int 13h
; --------------
db 0EAh ;JMP FAR
dw 0 ;offset
dw 1000h ;segment
ORG 1FEH
dw 0AA55h
;----------------------------------------------------------------------------------
END boot0
The kernel code which is stored at sect2 is given below:
.model tiny
.data
msg db "We be bootin2'!",0
.code
start:
;org 1000h:0;
call overdata ; Call? WTF? Don't worry, we pop the.
; return address off to get initial IP.
; Note that "call" is longer than
;----------------------------writing a mesg on screen at startup. We cant use int 21h
overdata:
xor di,di
mov ds,di
mov cs,di
;----------------------------
mov bp,offset msg
mov ah,013h ; Fn 13h of int 10h writes a whole string on screen
mov al,00 ; bit 0 determines cursor pos,0->point to start after
; function call,1->point to last position written
mov bx,0007h ; bh -> screen page ie 0,bl = 07 ie white on black
mov cx,020h ; Length of string here 32
mov dx,00000 ; dh->start cursor row,dl->start cursor column
int 010h ; call bios interrupt 10h
; Return to calling routin
hlt
end start
I am using partcopy program from web to copy the kernel to sect2.
The partcopy command is given below:
partcopy test.bin 0 2C -f0 200
Can somebody guide me how to solve this prob. plz?
Zulfi.
well - at the org 0, there are 3 bytes reserved for a branch to code - THEN 8 characters for the name - THEN the BPB
http://www.ntfs.com/ntfs-partition-boot-sector.htm
;creates a boot loader and jumps to kernel
.MODEL TINY
.CODE
ORG 0
boot0: jmp short boot1
ORG 3
;OEM identifier
.STACK 2048; removes the stack warning
ORG 0Bh
bpbBytesPerSector DW 512
bpbSectorsPerCluster DB 1
bpbReservedSectors DW 1
bpbNumberOfFATs DB 2
bpbRootEntries DW 224
bpbTotalSectors DW 2880
bpbMedia DB 0F0h
bpbSectorsPerFAT DW 9
bpbSectorsPerTrack DW 18
bpbHeadsPerCylinder DW 2
bpbHiddenSectors DD 0
bpbTotalSectorsBig DD 0
bsDriveNumber DB 0
bsUnused DB 0
bsExtBootSignature DB 29h
bsSerialNumber DD 0a0a1a2a3h
bsVolumeLabel DB "MOS FLOPPY "
bsFileSystem DB "FAT12 "
;code branch
boot1: cli ;disable maskable interrupts
xor di,di
mov ss,di
mov sp,7C00h ;SS:SP = 0000:7C00
sti
;---------------------- displays a character 'A'
cld
mov ax,0B800h
mov es,ax
xor di,di
mov ax,1F41h
stosw
;-----------------------
mov ah, 0
int 16h
;-----------------reset floppy
Reset:
mov ah,0; reset floppy disk function
mov dl, 0
int 13h
jc Reset; If carry set, error. Try again
;---------------
mov ax, 1000h; read sector into address 0x1000:0
mov es, ax
xor bx, bx
mov ah, 2; read sector function
mov al, 1; read 1 sector
mov ch,1;
mov cl,2; reading 2nd sector
mov dh, 0
mov dl, 0
int 13h
; --------------
db 0EAh ;JMP FAR
dw 0 ;offset
dw 1000h ;segment
ORG 1FEH
dw 0AA55h
;----------------------------------------------------------------------------------
END boot0
Thanks for your tips but still the above code is not working. I need some more guidance on this.
Zulfi.
Using ORG 0 instead of ORG 7C00h will work only for a boot sector that does not access its own data. For a boot sector that does access its own data, ORG 0 will cause ML to encode the instructions that access the data with addresses that will not match the actual addresses of the data in memory at runtime.
.model tiny
.stack
.code
org 0
start:
;-------------------------------------------
; The near ptr forces ML to encode a 3-byte
; near jump instead of a 2-byte short jump.
;-------------------------------------------
jmp near ptr @F
junk dw 1234h
@@:
mov ax, junk
org 510
dw 0AA55h
end start
D:\MASMDOS\morebootcode>if exist bt.bin del bt.bin
D:\MASMDOS\morebootcode>rename bt.com bt.bin
D:\MASMDOS\morebootcode>debug
-n bt.bin
-l 7c00
-u 7c00
0B10:7C00 E90200 JMP 7C05
0B10:7C03 3412 XOR AL,12
0B10:7C05 A10300 MOV AX,[0003]
.model tiny
.stack
.code
org 7c00h
start:
;-------------------------------------------
; The near ptr forces ML to encode a 3-byte
; near jump instead of a 2-byte short jump.
;-------------------------------------------
jmp near ptr @F
junk dw 1234h
@@:
mov ax, junk
org 7c00h + 510
dw 0AA55h
end start
D:\MASMDOS\morebootcode>if exist bt.bin del bt.bin
D:\MASMDOS\morebootcode>rename bt.com bt.bin
D:\MASMDOS\morebootcode>debug
-n bt.bin
-l 7c00
-u 7c00
0B10:7C00 E90200 JMP 7C05
0B10:7C03 3412 XOR AL,12
0B10:7C05 A1037C MOV AX,[7C03]
Also, in your kernel code there are some obvious problems:
call overdata
overdata:
xor di,di
mov ds,di
mov cs,di
Your far jump to the code set CS, and the code is trying to reset it to 0, using an invalid instruction (you cannot load CS with a MOV instruction). Instead of setting DS to 0 it should probably be set to the value of CS, and you should probably do the same for SS, and then set SP to a workable value (for this code I would start with 1000h).
Thanks for your reply. It would take sometime for me to improve my code.
Zulfi.
Hi,
I have done all the changes but still its not working.
Zulfi.
Bootloader program:
;creates a boot loader and jumps to kernel
.MODEL TINY
.CODE
ORG 7C00H
boot0: jmp short boot1
ORG 7C00h+3
;OEM identifier
.STACK 2048; removes the stack warning
ORG 7C00H+0Bh
bpbBytesPerSector DW 512
bpbSectorsPerCluster DB 1
bpbReservedSectors DW 1
bpbNumberOfFATs DB 2
bpbRootEntries DW 224
bpbTotalSectors DW 2880
bpbMedia DB 0F0h
bpbSectorsPerFAT DW 9
bpbSectorsPerTrack DW 18
bpbHeadsPerCylinder DW 2
bpbHiddenSectors DD 0
bpbTotalSectorsBig DD 0
bsDriveNumber DB 0
bsUnused DB 0
bsExtBootSignature DB 29h
bsSerialNumber DD 0a0a1a2a3h
bsVolumeLabel DB "MOS FLOPPY "
bsFileSystem DB "FAT12 "
;code branch
boot1: cli ;disable maskable interrupts
xor di,di
mov ss,di
mov sp,7C00h ;SS:SP = 0000:7C00
sti
;---------------------- displays a character 'A'
cld
mov ax,0B800h
mov es,ax
xor di,di
mov ax,1F41h
stosw
;-----------------------
mov ah, 0
int 16h
;-----------------reset floppy
Reset:
mov ah,0; reset floppy disk function
mov dl, 0
int 13h
jc Reset; If carry set, error. Try again
;---------------
mov ax, 1000h; read sector into address 0x1000:0
mov es, ax
xor bx, bx
mov ah, 2; read sector function
mov al, 1; read 1 sector
mov ch,1;
mov cl,2; reading 2nd sector
mov dh, 0
mov dl, 0
int 13h
; --------------
db 0EAh ;JMP FAR
dw 0 ;offset
dw 1000h ;segment
ORG 1FEH
dw 0AA55h
;----------------------------------------------------------------------------------
END boot0
sect2.asm (kernel)
;partcopy sect2.bin 0 2C -f0 200
;USING INT 10 H for Printing Mesg
;------------------------------------
.model tiny
.data
msg db "We be bootin2'!",0
.code
start:
;org 1000h:0;
call overdata ; Call? WTF? Don't worry, we pop the.
; return address off to get initial IP.
; Note that "call" is longer than
;----------------------------writing a mesg on screen at startup. We cant use int 21h
overdata:
mov ax,1000h; Note CS is already 1000h
mov ds,ax
mov ss,ax
;----------------------------
mov bp,offset msg
mov ah,013h ; Fn 13h of int 10h writes a whole string on screen
mov al,00 ; bit 0 determines cursor pos,0->point to start after
; function call,1->point to last position written
mov bx,0007h ; bh -> screen page ie 0,bl = 07 ie white on black
mov cx,0Ch ; Length of string here 13
mov dx,00000 ; dh->start cursor row,dl->start cursor column
int 010h ; call bios interrupt 10h
; Return to calling routin
hlt
end start
I still need some more help on this.
You define a new 2Kb segment (.stack) after your code (.code) and then continue your code.
"mov ch,1;" makes you read track 1
After the jump to overdata you initialise SS but not SP (not fatal here, but they usually go in tandem).
'hlt' will only halt the cpu until an interrupt, and the timer goes off 18-odd times a second. Use 'cli, hlt' or even 'jmp $'
If you are writing code to the 2nd sector then you don't need to have a BPB, since that should be the first FAT sector.
I'm pretty sure that the int 10 call needs the string address in ES:BP. I realise you made it 1000 for the disk read, but it could be a gotcha later.
You forgot to change the ORG 1FEH. My suggestions regarding the SS and SP values were not right. I think for now you should leave SS and SP as you set them up in the boot sector code.
Hi,
I have changed the sector 2 code but still its not clicked.
Kindly give me more guidance how to solve this problem?
Zulfi.
.model small
.data
msg db "We be bootin2'!",0
.code
start:
;org 1000h:0;
call overdata ; Call? WTF? Don't worry, we pop the.
; return address off to get initial IP.
; Note that "call" is longer than
;----------------------------writing a mesg on screen at startup. We cant use int 21h
overdata:
mov ax,1000h; Note CS is already 1000h
mov ds,ax
;mov ss,ax
mov ax,@data
mov es, ax
;----------------------------
mov bp,offset msg
mov ah,013h ; Fn 13h of int 10h writes a whole string on screen
mov al,00 ; bit 0 determines cursor pos,0->point to start after
; function call,1->point to last position written
mov bx,0007h ; bh -> screen page ie 0,bl = 07 ie white on black
mov cx,0Ch ; Length of string here 13
mov dx,00000 ; dh->start cursor row,dl->start cursor column
int 010h ; call bios interrupt 10h
; Return to calling routin
cli
hlt
end start
well - i have not been keeping up with this thread, Zulfi
if you want to make life easier, though, just use the CS register to get the current code segment into DS and ES
push cs ;4 byte version
pop ds
push cs
pop es
or...
mov ax,cs ;6 byte version
mov ds,ax
mov es,ax
that way, the segments are local, no matter where the boot sector places the code
Hi,
I would try your suggestion but in the previous mesg sinsi told me that:
"I'm pretty sure that the int 10 call needs the string address in ES:BP" so es should point to data segement. However I would change ds to point to cs.
Zulfi.
at this point in the boot process, there is no need to have a seperate data segment
because all the code and data can easily fit into one 64 Kb segment
so, put the strings, as well as all the other data, in the code segment
Hi,
No change. Its just printing 'A' and not going to kernel code.
Is this a prob.?
"LINK : warning L4055: start address not equal to 0x100 for /TINY"
Zulfi.
.model tiny
.code
msg db "We be bootin2'!",0
start:
;org 1000h:0;
call overdata ; Call? WTF? Don't worry, we pop the.
; return address off to get initial IP.
; Note that "call" is longer than
;----------------------------writing a mesg on screen at startup. We cant use int 21h
overdata:
mov ax,cs; Note CS is already 1000h
mov ds,ax
;mov ss,ax
;mov ax,@data
mov es, ax
;----------------------------
mov bp,offset msg
mov ah,013h ; Fn 13h of int 10h writes a whole string on screen
mov al,00 ; bit 0 determines cursor pos,0->point to start after
; function call,1->point to last position written
mov bx,0007h ; bh -> screen page ie 0,bl = 07 ie white on black
mov cx,0Ch ; Length of string here 13
mov dx,00000 ; dh->start cursor row,dl->start cursor column
int 010h ; call bios interrupt 10h
; Return to calling routin
cli
hlt
end start
no - you can ignore the ORG warning, as well as the STACK warning (should be no stack segment for tiny)
both of those warnings tell you that you are doing it right
i am playing with the code - give me a few minutes
ok - here is the boot sector code
i am not sure why you want to load at 1000:0000
i think i would load at 0000:7E00
i put those values in EQUates so it is easy to change
give me a few more minutes for the bootloader
.MODEL TINY
.CODE
;----------------------------------------------------------------------------------
LoadOfs EQU 0
LoadSeg EQU 1000h
;----------------------------------------------------------------------------------
;---------------------- branch to executable code
ORG 0
Boot0: jmp short Boot1
;---------------------- OEM identifier
ORG 3
DB "Zulfi OS"
;---------------------- BIOS parameter block for 1.44 Mb floppy disk
ORG 0Bh
bpbBytesPerSector DW 512
bpbSectorsPerCluster DB 1
bpbReservedSectors DW 1
bpbNumberOfFATs DB 2
bpbRootEntries DW 224
bpbTotalSectors DW 2880
bpbMedia DB 0F0h
bpbSectorsPerFAT DW 9
bpbSectorsPerTrack DW 18
bpbHeadsPerCylinder DW 2
bpbHiddenSectors DD 0
bpbTotalSectorsBig DD 0
bsDriveNumber DB 0
bsUnused DB 0
bsExtBootSignature DB 29h
bsSerialNumber DD 0a0a1a2a3h
bsVolumeLabel DB "MOS FLOPPY "
bsFileSystem DB "FAT12 "
;---------------------- initialize SS:SP
Boot1: cli ;disable maskable interrupts
xor di,di
mov ss,di
mov sp,7C00h ;SS:SP = 0000:7C00
sti ;enable maskable interrupts
;---------------------- display 'A' character
cld
mov ax,0B800h
mov es,ax
mov ax,1F41h
stosw
;---------------------- wait for a keypress
mov ah,0
int 16h
;---------------------- read the bootloader code
mov cx,5 ;retry count
Reset0: push cx
mov ah,0 ;reset floppy disk function
mov dl,0 ;drive A:
int 13h
mov ax,LoadSeg ;read sector into address LoadSeg:LoadOfs
mov es,ax
mov bx,LoadOfs
mov cx,2 ;cylinder 0, sector 2
xor dx,dx ;head 0, drive 0
mov ax,201h ;read 1 sector
int 13h
pop cx
jnc Exec0
loop Reset0
;---------------------- failed 5 times - halt
Halt0: jmp Halt0
;---------------------- execute the bootloader code
Exec0:
db 0EAh ;JMP FAR instruction
dw LoadOfs ;offset
dw LoadSeg ;segment
;---------------------- boot sector signature
ORG 1FEh
dw 0AA55h
;----------------------------------------------------------------------------------
END Boot0
you should disassemble a DOS boot sector - they use the BPB values to find the first real data sector and load from there
bootloader - we don't need to set DS for this one
this has to go on drive 0, side 0, cylinder 0, sector 2 for the bootstrap code to find it
a better way is to put this code in the first data sector of the floppy
then, use the BPB parameters to calculate the cylinder/head/sector number to find it
that way, you can read and write the disk with DOS
don't forget - after you see the "A", you have to press a key to continue (there is no message telling you that - lol)
.MODEL TINY
.CODE
;----------------------------------------------------------------------------------
LoadOfs EQU 0 ;must match the value in the bootloader source file
;----------------------------------------------------------------------------------
;---------------------- initialize ES segment register
ORG 0
Start: push cs
pop es
;---------------------- writing a message on screen at startup - we can't use int 21h
mov bp,offset Msg0+LoadOfs
mov cx,sizeof Msg0
xor dx,dx ;row 0, column 0
mov bx,7 ;page 0, attribute = 7 (white on black)
mov ax,1301h ;function 13 - cursor mode 1
int 10h
;---------------------- done - halt
Halt0: jmp Halt0
;---------------------- data area in code segment
Msg0 db "We be bootin2!"
;----------------------------------------------------------------------------------
END Start
Hi,
Thanks for your help. I have to ask some questions on your code. But right now I am facing another prob. I cant copy to sect2(the program which call bootloader) using partcopy.
D:\MASMPR~1>partcopy sect2_2.bin 0 200 -f0 200
Failed to read source at offset 22
D:\MASMPR~1>partcopy sect2_2.bin 0 2C -f0 200
Failed to read source at offset 22
D:\MASMPR~1>
Kindly help me in this regard.
Zulfi.
lemme see - well - one way would be to use debug to perform the disk write
another way would be to write a small program to do it for you - it would be a simple program
be sure you start with a formatted floppy disk
as i said, the better way is to use the first real data sector
but, we should be able to test it as is
this machine has no floppy disk drive to test with
i suppose i could knock the dust off one of my older machines - lol
Hi,
I am using debug but I am getting write protect error. I have modified the srcipt provided by MichealW. First I formatted the floppy and then used his script to write bootsector. But when I am writing bootloader I am getting write protect error.
The modified script is given below:
PAUSE
ml /c sect2_2.asm
pause
link16 /tiny sect2_2.obj,sect2_2.bin;
pause
:debug sect2_2.bin
:pause
debug < makeboot1.txt
pause
and makeboot1.txt
N
N This is a DEBUG script that will copy
N sect2_2.bin to sector 0 of drive A.
N
N sect2_2.bin
L 0
W 0 0 1 2
Q
Kindly help me in this regard.
Zulfi.
it may be because the OS won't allow you to write to the FAT
write a small program
use BIOS INT 13h to write the file
Hi Dave,
I tried your code (after translating to 720 k format) and
am seeing errors in Windows 2000. The first write of the
boot sector goes ahead and does write to the diskette. The
second attempt to write the boot loader from debug says
write protected. CHKDSK and my own disk format program
then report errors or a non-DOS disk.
In my bastardized program the error code doesn't make
much sense. (A variation of The Waite Group's READFMT
program if of interest.) (Or maybe it makes sense and I
am using the wrong codes?) Looking with Norton's DISKEDIT
does not show anything obviously wrong. So, I will try with
a real MS-DOS system to see if your comment about writes
to the fat are correct. And will try to track down the other
errors as time permits.
Regards,
Steve N.
Edit: Yeah, wrong error code list. "General failure" and
"Address mark not found"
SRN
well - i think INT 13h could do it for you
however - why waste the time ?
the time might be better spent modifying the code so that it loads from the first real data sector
you are going to want to do that eventually, anyways
for that matter, just format the floppy with DOS
disassemble their boot sector
and write your loader code so that it works with their bootstrapper - lol
all the elements that are in their boot sector are good elements to have
they set the BPB table interrupt along with a few of the parameters and calculate the CHS for the first data sector i think
as i mentioned, i have no floppy drive to play with on this machine
i looked - they didn't even populate the connector on the motherboard to stick one in there - lol
i am guessing that means my BIOS won't support a floppy
Hi,
Yeah, off to the DOS machine to see what else I can screw
up. Now that I found what the error messages are, I can
probaly do something very stupid. Perhaps writing to the
wrong (second) sector in a cluster?
You might check and see if your machine can boot from
USB? Almost makes you wonder how much money is saved
by not supporting a floppy in the BIOS. Not that that matters
if you have solder things anyway...
Cheers,
Steve
Hi,
Okay, quick and dirty results: MS-DOS 6.2x, DEBUG
happily writes to the diskette. Good old machine boots
from floppy, displays funny colored "A", and booting
message. CHKDSK and my program still unhappy with
it.
Now to fix up the error messages, and clean up my
utility program.
FWIW,
Steve N.
Hi all,
Based Fortrans work I am thinking to download debug 6.2x.
dedndave:
"the time might be better spent modifying the code so that it loads from the first real data sector
you are going to want to do that eventually, anyways
for that matter, just format the floppy with DOS
disassemble their boot sector
and write your loader code so that it works with their bootstrapper - lol
"
What I understood from your mesg that I have to format using:
format a:/s
and then overwrite the bootsector and then write the loader.
Am I write??
Zulfi.
no Zulfi
the boot sector is always written onto floppies
the /s switch adds the files io.sys, msdos.sys, and command.com - we don't need those
Steve - attach the 512 binary for a 6.2 DOS floppy - i will disassemble it
we can see how they calculate the first data sector
i can't do it from memory - there is something about adding "hidden sectors" - i forget
we can also do the BPB block thing and make a proper boot disk
lol - i thought we did all this once before
Thanks for your quick response. Ok I would try the other option of writing the program. I am also looking for debug 6.2 links. Is it same as Dos 6.2 debug?
Zulfi.
i use SymDeb for 16-bit code...
as for a linker, link16 or lnk563 should work
http://www.4shared.com/file/156081729/2ec76f0a/SymDeb.html
Hello,
I have been 'playing around' on the DOS machine. To
cure the toxic response I changed the sectors per cluster
value. Here are the changes to Dave's code I made.
bpbSectorsPerCluster DB 2 ; 1 Mods to dedndave's code: Cluster size
bpbReservedSectors DW 1
bpbNumberOfFATs DB 2
bpbRootEntries DW 112 ; 224 Mods to dedndave's code: 720 K diskette
bpbTotalSectors DW 1440 ; 2880
bpbMedia DB 0F9H ; 0F0h
bpbSectorsPerFAT DW 3 ; 9
bpbSectorsPerTrack DW 9 ; 18
The poor response of my utility, DISKEDIT, and CHKDSK
seem to be cured by that. (Or not writing to the FAT a
bunch of stuff, not yet fully tested.)
Attached is DOS boot sector in binary and hex.
HTH,
Steve
thanks Steve :U
Hi,
Now that the boot sector is behaving "better" on the
DOS machine, I tried again on the Windows 2000 machine.
Unfortunately, no change in symptoms from my first post
in this thread.
I have some vague memories that M$ may do some
strange things with floppies, but if so, it would apply to
Win ME. (?) This was to check for a diskette being
changed in the drive. So, one or two things to check out.
One is if that M$ change is happening. Another might be
that there is a check of the strings in the boot sector.
A third thing to try would be combining the two BIN files,
and write two sectors at once.
Regards,
Steve
we just need to put the bootloader in the data area, where it belongs - lol
i am almost done disassembling the boot sector (a few comments left, is all)
i think their code is sloppy - lol (as with most MS code i have disassembled)
there is room to make it so the bootloader doesn't have to be in the first data sector, if you wanted to scrunch a little bit
here we go - dos 5 boot sector
you can see they get sloppy
to write code for a boot sector, they should have put their "ROM-able code guy" on the job
Hi,
Well, Win2K is not altering the diskette that I can tell.
And using the bootsector I posted I can write it to the
diskette, without complaint by CHKDSK et. al. However
I notice that diskettes formatted by Win2K and MS-DOS
6.20 have a string that is "MSDOS5.0".
Regards,
Steve N.
i am pretty sure the win2k+ OS's don't want you messing with the FAT sectors
Hi,
I have found another command of partcopy:
partcopy -f0 200 200 sect2_2.bin
This has copied the sect2_2.bin to the sector2. However when I booted the system , I am only able to see 'A' and not the kernel message.
Zulfi.
don't forget to press a key, Zulfi - lol
I have pressed the key several times. I know its using int 16h.
Kindly tell me how to handle this prob. Thanks for your continuous efforts and time.
Zulfi.
Can you give us the latest code? Or is the previous still valid?
boot sector
http://www.masm32.com/board/index.php?topic=12709.msg98202#msg98202
sector 2
http://www.masm32.com/board/index.php?topic=12709.msg98204#msg98204
we need to write it for the first data sector
i may play with it today
Hi,
Its the same code. I have checked it again.
Zulfi.
Hi,
Well, duh. On the Win 2000 system, I wrote the boot
loader to the second sector (1) without complaint. Then
wrote the boot sector to the first (0) sector. And it boots,
shows the "A", and the booting message. The diskette
is still generating all the errors when examined, but it boots...
Should have thought of that a while back.
Fnord only knows.
Regards,
Steve N.
Hi,
I have windows XP professional on my computer. I dont have any access to win 2000. Everywhere its XP.
Zulfi.
i use XP Pro also, Zulfi
but that doesn't matter, as i don't have a machine with a floppy that isn't Win98 - lol
later today, i will work on a simple test program for you guys to run for me
it will test writing using INT 13h and INT 26h
it will test sector 2, as well as a valid data sector
once we know what we can use to write to the floppy, we will make a new bootloader
Hi,
Windows 2000 and XP are similar "under the hood". The
last post was to show how I got around the write protect and
other file errors I was seeing. It should work for Zulfi as well.
Here is what I ended up doing.
debug bootload.bin
-w CS:100 0 1 1
-q
debug bootsect.bin
-w CS:100 0 0 1
-q
I looked at Dave's disassembly of the boot sector, and made
one myself with Sourcer. Nicely done Dave, good comments.
I'll try a few other things to try and find out what Windows does
not like about the new boot sector. It seems to be following the
rules in the MS-DOS Programmer's Reference.
Regards,
Steve
Hi,
I modified Dave's boot sector code, and got rid of the error
messages in Windows 2000. The following code block shows
the last change that fixed things.
;---------------------- branch to executable code
ORG 0
Boot0: jmp short Boot1
NOP ; Mods to deadndave's code: Win2K error fix
;---------------------- OEM identifier
ORG 3
Regards,
Steve N.
i ORG'ed to 7C00h in the boot sector dis-assembly because that is "real-world" - lol
there are a couple ways to handle the problem
one way is to create an offset EQU and add it to all the variable addresses
example:
Loader_Offset EQU 7C00h
.
.
.
ORG 3
BW7C03 DW 512 ;bytes per sector
.
.
.
.
MOV AX,Loader_Offset+BW7C03
another approach is to create dummy labels
ORG 7C03h
BW7C03 LABEL WORD
ORG 7C05h
BB7C05 LABEL BYTE
notice that they do not use DW ? or DB ?
with masm v 5.10, it tried to create data for DW and DB, even if it was a "?"
i had to use LABEL
i don't know how that works out with masm 6.1+ yet - haven't got that far
here is the thing, Steve
even if we place the bootloader in the floppy data area, we have to be able to access sectors directly
so that we can insure it is written in successive sectors (assuming it is eventually larger than 512 bytes)
if we can't use INT 13h under XP, we need to try INT 26h
INT 25h and INT 26h are a little tricky - they leave the pushed flags on the stack
you could pop them off without altering the desired flags by using
INT 26h ;DOS absolute sector write
POP [SP-2] ;similar to ADD SP,2, but does not alter the flags
if INT 26h doesn't work, we need to find a way to tell XP we need permission
i guess i could disassemble FORMAT.EXE, but that is a lot of work - lol
it's not just data sectors, either
we may need to examine and update the root directory and FAT's directly in order to write consecutive sectors
IIRC there is no problem with low-level access to a floppy drive, read or write, from a DOS app running under Windows XP. I know that there is no problem with Windows 2000 (although I don't recall testing this from a limited account).
Hi,
Right, the DOS utility I was using does Int 25H reads, and
now works properly, given some vague definition of proper. So
I presume other low-level access is also available as well.
Steve
Hi Steve,
I tried your commands. First I added nop at the point you showed and then I wrote using debug, even by changing the order. But each time I was not able to beyond 'A'. Any way thanks for your guidance. I still need more help in this regard.
Zulfi.
Hi,
Well this gets down to the sausage making I mentioned
in another thread. Start adding code to see where things
go bad. Suggestion to add in the boot sector.
;---------------------- failed 5 times - halt
;---------------------- display 'F' character
; Show the failure occured.
mov ax,0B800h
mov es,ax
mov DI,4 ; Move a bit to avoid the 'A'
mov ax,3C46H
stosw
Halt0: jmp Halt0
Suggestion for the boot load.
Start: push cs
pop es
; - - - Make it obvious that we got this far, clear the screen. - - -
MOV AX,3 ; Function 0, mode 3.
INT 10H
;---------------------- writing a message on screen at startup - we can't use int 21h
Next would be print out part of what the boot sector loaaded,
in the boot sector code, to see that it got the right stuff.
HTH,
Steve N.
Hi,
I am not able to understand your suggestion about boot sector. Its printing 'A',fine. We have to check whether it jumps or not. I would try something in boot loader, maybe what you have suggested. In the meantime, if any other thing clicks in your mind, let me know.
Zulfi.
that is a good idea, Steve
in fact, you could write a little code to show the "data" (i.e. code) at 1000:0000 after it is read
in other words, the boot sector is working, so let's use it as a tool
after the bootloader is read into memory, you could display the first few bytes of it in hex before jumping to it
Quote from: zak100 on November 24, 2009, 02:29:31 PM
Hi,
I am not able to understand your suggestion about boot sector. Its printing 'A',fine. We have to check whether it jumps or not.
Exactly. It prints the 'A', then tries to read the diskette
to load the code to jump to. Does it succeed? If you look
in Dave's posted boot sector in Reply #14, and look at the
comments, you should see where to put the new code I
posted to flag if the diskette read failed 5 times.
QuoteI would try something in boot loader, maybe what
you have suggested.
Good, keep us up to date.
QuoteIn the meantime, if any other thing clicks in your mind, let me know.
Well, that is what Dave and I were talking about. Printing
some of what is actually in the memory where it is going to
jump to.
The code from Dave, plus the two fixes, and the change to
a 720K diskette works for me now without error. So I can not do
much to help find the error you still have except suggest things.
When I had the same problems you reported, I could try out
various things here to try and fix things. If the suggestions I
made don't help, I will try and find a spare 1.44 diskette, but I
doubt that is the problem.
Regards,
Steve
You are still using a DOS BPB. Two options -
1. call your file io.sys and use a standard dos5+ floppy
2. ignore dos and write the second stage to sector 0/0/2
I still think you are limiting yourself by using masm.
Hi,
To expand on sinsi's reply, 1. IO.SYS is loaded by the
standard DOS boot sector. Make sure you use only a
freshly formatted diskette, and copy your binary code
to the diskette as IO.SYS. Not sure if you then need an
MSDOS.SYS as well.
2. Writing to the second sector, as we are doing now,
screws up the FAT and a marker byte in the FAT is used
to determine if the diskette is valid to use. So to reuse a
diskette, we now need to reformat it to copy to it.
Regards,
Steve
Even if a floppy has data on it you can still make it a bootable disk after this fact, because the area is reserved, so formating it, doesn't matter at this time.
Also, when writing boot sectors there are different IDs used versus the FAT IDs usage to indicated that sectors have been used. Make sure you are using the correct ones at the correct times.
If you are overwriting the FAT area then you are writing to many bytes or starting at the wrong point. The two reserved sector are in a fixed sized (512 bytes) format.
Peter Norton's book on assembly is a good reference for the floppy and creating a bookable diskete, no matter what os you are running / creating.
when the floppy is booting up, the BIOS knows nothing about FAT's
it knows nothing about the floppy at all, really
it simply loads the first sector of the floppy to address 0000:7C00 and executes it
it doesn't even know the sector size, although all DOS floppies have always used 512 byte sectors
BIOS cannot handle sector sizes larger than 512 bytes, but they can be smaller
at that time, there is no DOS installed - no comprehension of FAT's or root directories, for that matter
the problem we are encountering is simple
newer OS's are not letting us write to the FAT area
older OS's allow it
it is an access permission issue
i was thinking we may be able to trick the OS by telling it (in the BPB) that there is no FAT
so:
1) write a temporary boot sector to sector 1 that has a BPB with FAT sectors and number of FAT's set to 0
2) reset the disk system
3) write our code to sector 2
4) write the final version of the boot sector to sector 1
the thing is, eventually we will want to write files to the data area in contiguous sectors
in order to insure that happens, we are going to want to access the FAT and root directory areas
we may have to use the same trick again
when i get some time, i want to write a new boot sector
if there is enough room, i may try to design it so that the "IO.SYS" code may be anywhere on the floppy
hopefully, the only requirement will be that its' directory entry be in the root directory
that code will have to interpret enough of the FAT to find the first couple data clusters of IO.SYS
then, we can just copy it over there and let the OS decide which data clusters to use
when IO.SYS takes over, it can start with code that reads the rest of itself into memory
i have another project that i have to finish before i can get back to playing with this
Thanks you guys. Actually I am getting slow on this. I have to do some urgent work. It would take atleast four days. i would try my best to try what you people have suggested during these days if I get time. But I am not leaving this task unfinished only deferring it for sometime. Actually once i got the code using nasm. It was a 2 stage kernel and I was following the same steps which I am doing now. I dont know how it worked with nasm. I would try to send an attachment of this code also as soon as I get time.
Zulfi.
DeDnDave/Zara is right. One thought, if newer systems dont allow individual sector writes as described, then how about track writes, but then you have to consider the CRC stuff inbetween the sectors also and the track flags also, which is a more difficult task to accomplish and keep under control. Note security uses this technique to ensure a fully erased disk, because it rotates data on the disk every time it is activated.
Another option is your hardware (Floppy) has a specific chip on it. Using that chip as a reference you can send it the commands necessary to perform the dos functions you need and therefore wouldn't need to reboot your system inbetween disk writes. Manufacturing (Chip) info and commands are freely available, so all you have to do it figure out which one you have and then select / find the address stuff, and then bypass the OS when performing these tasks.
You should be able to write to a floppy sector-by-sector (if you can use the win32 api).
The floppy boot sector for DOS 5+ (pre-win2000) searches the entire root directory for a file called io.sys, loads it (at 0070:0000 I think) and jumps to it.
heh, you should look at a win7 boot sector (looks for a bios bitlocker api). A CD boot sector without emulation (2000 et al) is interesting too...
Hi Dave,
Quote from: dedndave on November 25, 2009, 03:50:58 PM
the problem we are encountering is simple
newer OS's are not letting us write to the FAT area
older OS's allow it
it is an access permission issue
Actually, with my experiments in MS-DOS 6.2x and Windows 2000,
it is not really an access issue. One sector write can go anywhere.
But if you (I, we) screw up either the BPB or the FAT, Win2k gets
very unhappy. If it is the BPB then you cannot access any of the
diskette.
The original boot sector you posted had a one byte error that
killed the BPB. Win2K then says that it is corrupt and write protected.
Writing the boot load to the first FAT sector killed the FAT marker byte.
So, while Win2k still allowed you to write to the diskette a second time
to write a boot sector, any check of it before that said it was corrupt.
(CHKDSK, DISKEDIT, or my utility variant.)
Possibly a nit, but access per say to a properly formatted diskette
does not seem to be a problem. It is just that Win2k gets really
miffed with a non-standard diskette. And then you have no access
at all.
DOS could care less apparently. Though it reports errors just fine
when asked. So it looked like it barfed on some occasions.
YMMV,
Steve N.
Hi,
Thanks all of you for working on my prob. I have tried Steve's solution again but still the prob persists. I have yet checked any of the other options provided by other friends. However I am able to run the nasm program. If any body is interested i can email him. The attachment icon is not visible, may be not enabled. This proves Steve's point of view that OS doesnt put any restriction on writing on the sectors.
I would try to work on ther sol. soon.
Zulfi.
Hi,
Attached is the modified code Dave posed, and the resulting
binaries. If you could perform a sanity check Dave? Zulfi, you
can see if this matches what you were using.
Regards,
Steve N.
looks good, Steve
i wish i had a floppy drive to play with - lol
i am almost finished with my other project - it is coming along nicely
when i am done with that, i want to...
1) write a boot sector that finds our "IO.SYS" (or whatever we name it) anywhere on the disk
2) write a program that writes the boot sector (selectable to skip this step)
the boot sector code will be part of the program
and writes an external "IO.SYS" type file to the disk (also selectable to skip this step)
the last part may not be necessary if the bootstrap works the way i want
you can just copy the file over to the floppy
once we get that all up and running, Zulfi can start playing with the really hard part - the IO.SYS program - lol
Hi all,
This solution has worked. I would be comparing this code with mine to find out whats the prob. I applied sinsi's suggestion and even changed the BPB as said by Steve but things were not working. I would now check how this is working. I have just copied the binaries and not yet compiled the whole.
Zulfi.