mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:12:58 +00:00
Use .asciz instead of .ascii, because ML doesn't understand "\0"
svn path=/branches/ros-amd64-bringup/; revision=45439
This commit is contained in:
parent
046981b86f
commit
0ddbbb06b6
1 changed files with 8 additions and 8 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue