Use .asciz instead of .ascii, because ML doesn't understand "\0"

svn path=/branches/ros-amd64-bringup/; revision=45439
This commit is contained in:
Timo Kreuzer 2010-02-06 00:05:48 +00:00
parent 046981b86f
commit 0ddbbb06b6

View file

@ -25,28 +25,28 @@ EXTERN KiXmmExceptionHandler:PROC
PUBLIC MsgUnimplemented PUBLIC MsgUnimplemented
MsgUnimplemented: MsgUnimplemented:
.ascii "WARNING: %s at %s:%d is UNIMPLEMENTED!\n" .asciz "WARNING: %s at %s:%d is UNIMPLEMENTED!\n"
MsgPageFault: MsgPageFault:
.ascii "Page fault! Code = 0x%x, RIP = %p, FaultingAddress = %p\n\0" .asciz "Page fault! Code = 0x%x, RIP = %p, FaultingAddress = %p\n"
MsgGeneralProtFault: MsgGeneralProtFault:
.ascii "General protection fault at %p!\n\0" .asciz "General protection fault at %p!\n"
MsgBreakpointTrap: MsgBreakpointTrap:
.ascii "BreakpointTrap at %p\n\0" .asciz "BreakpointTrap at %p\n"
MsgUnexpectedInterrupt: MsgUnexpectedInterrupt:
.ascii "UnexpectedInterrupt Vector=0x%02lx\n\0" .asciz "UnexpectedInterrupt Vector=0x%02lx\n"
MsgInvalidOpcodeFault: MsgInvalidOpcodeFault:
.ascii "Invalid opcode fault at %p!\n\0" .asciz "Invalid opcode fault at %p!\n"
MsgDoubleFault: MsgDoubleFault:
.ascii "Double fault at %p, rbp=%p!\n\0" .asciz "Double fault at %p, rbp=%p!\n"
MsgTrapInfo: MsgTrapInfo:
.ascii "Trap: %s at %p\n\0" .asciz "Trap: %s at %p\n"
MACRO(TRAPINFO, func) MACRO(TRAPINFO, func)
LOCAL label1, label2 LOCAL label1, label2