mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 19:21:38 +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
|
||||
MsgUnimplemented:
|
||||
.ascii "WARNING: %s at %s:%d is UNIMPLEMENTED!\n"
|
||||
.asciz "WARNING: %s at %s:%d is UNIMPLEMENTED!\n"
|
||||
|
||||
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:
|
||||
.ascii "General protection fault at %p!\n\0"
|
||||
.asciz "General protection fault at %p!\n"
|
||||
|
||||
MsgBreakpointTrap:
|
||||
.ascii "BreakpointTrap at %p\n\0"
|
||||
.asciz "BreakpointTrap at %p\n"
|
||||
|
||||
MsgUnexpectedInterrupt:
|
||||
.ascii "UnexpectedInterrupt Vector=0x%02lx\n\0"
|
||||
.asciz "UnexpectedInterrupt Vector=0x%02lx\n"
|
||||
|
||||
MsgInvalidOpcodeFault:
|
||||
.ascii "Invalid opcode fault at %p!\n\0"
|
||||
.asciz "Invalid opcode fault at %p!\n"
|
||||
|
||||
MsgDoubleFault:
|
||||
.ascii "Double fault at %p, rbp=%p!\n\0"
|
||||
.asciz "Double fault at %p, rbp=%p!\n"
|
||||
|
||||
MsgTrapInfo:
|
||||
.ascii "Trap: %s at %p\n\0"
|
||||
.asciz "Trap: %s at %p\n"
|
||||
|
||||
MACRO(TRAPINFO, func)
|
||||
LOCAL label1, label2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue