Found this small bug. It won't print error messages. A simple fix.
--- mbr.asm.orig 2002-10-03 06:02:50.000000000 -0400
+++ mbr.asm 2004-01-08 06:55:13.000000000 -0500
@@ -165,7 +165,7 @@
die:
.msgloop:
lodsb
- xor al,al
+ or al,al
jz .now
mov ah,0Eh ; TTY output
mov bx,0007h
--
Pluto
2004-02-02 03:20:54.489 UTC (JD 2453037.639520)
X = -5.255192111, Y = -29.339637518, Z = -7.572624207
X' = 0.003152941, Y' = -0.000685772, Z' = -0.001163977
TenThumbs wrote:> Found this small bug. It won't print error messages. A simple fix. > > --- mbr.asm.orig 2002-10-03 06:02:50.000000000 -0400 > +++ mbr.asm 2004-01-08 06:55:13.000000000 -0500 > @@ -165,7 +165,7 @@ > die: > .msgloop: > lodsb > - xor al,al > + or al,al > jz .now > mov ah,0Eh ; TTY output > mov bx,0007h >Cool, thanks. Slightly modified bug fix applied. -hpa