Errors made it through!
Errors made it through!
I'm using John Fines bootloader, but when I try to add some code to it I and assemble, I get this error message:
bootf.asm:355: panic: errors made it through from pass one
And no other error messages! Why is this?
bootf.asm:355: panic: errors made it through from pass one
And no other error messages! Why is this?
Re:Errors made it through!
what code do u add and where?
/ Christoffer
/ Christoffer
Re:Errors made it through!
Code: Select all
mov ah, 0x9
mov al, '*'
mov bh, 0
mov bl, 0x7
mov cx, 0
int 0x10
Re:Errors made it through!
weird... do you have spaces/tabs before your instructions in your actual code, or are your instructions (ex "mov") at the very beginning of the line?
Re:Errors made it through!
How about
?
Code: Select all
mov ah, 9h
mov al, '*'
mov bh, 0
mov bl, 7h
mov cx, 0
int 10h
Re:Errors made it through!
Still "Errors made it through from pass one"Candy wrote: How about?Code: Select all
mov ah, 9h mov al, '*' mov bh, 0 mov bl, 7h mov cx, 0 int 10h
Re:Errors made it through!
Could you post the code so we can take a look at it?
Re:Errors made it through!
In the readme file does it not say what the error code means or is that number a pointer?.
ASHLEY4.
ASHLEY4.
- Pype.Clicker
- Member
- Posts: 5964
- Joined: Wed Oct 18, 2006 2:31 am
- Location: In a galaxy, far, far away
- Contact:
Re:Errors made it through!
never heard of such an error code either. What version of nasm is it ? did you checked for more recent/stable ones ?
Re:Errors made it through!
0x9 and 9h are the same thing. it should not make any diffrens..Candy wrote: How about?Code: Select all
mov ah, 9h mov al, '*' mov bh, 0 mov bl, 7h mov cx, 0 int 10h
Re:Errors made it through!
it SHOULD not. That's exactly why I asked.bubach wrote: 0x9 and 9h are the same thing. it should not make any diffrens..
Re:Errors made it through!
I had exactly the same problem with Bootf02 and NASM the other day. I think the code I had to change was a mov bx, 0 and I replaced it with xor bx, bx and it worked ???
Hope this helps
Pete
Hope this helps
Pete
Re:Errors made it through!
*makes a very nice guess*
You might be *just* over the max amount of bytes in the boot sector, causing the times-thing to want to make -1 or even less zeroes padding, thus crashing nasm.
You might be *just* over the max amount of bytes in the boot sector, causing the times-thing to want to make -1 or even less zeroes padding, thus crashing nasm.