forked from KolibriOS/kolibrios
36b5168a0c
git-svn-id: svn://kolibrios.org@6268 a494cfbc-eb01-0410-851d-a64ba20cac60
47 lines
520 B
PHP
47 lines
520 B
PHP
; debugging include file by barsuk
|
|
; if DEBUG=TRUE, adds debug.inc
|
|
; if DEBUG=FALSE, adds stubs for several macros from debug.inc
|
|
|
|
match =TRUE, DEBUG
|
|
{
|
|
|
|
include '..\..\..\..\debug.inc'
|
|
|
|
macro dph1 str
|
|
\{
|
|
debug_print_hex str
|
|
push eax
|
|
mov al, ' '
|
|
call debug_outchar
|
|
pop eax
|
|
\}
|
|
|
|
macro outs str
|
|
\{
|
|
pushad
|
|
lea edx, [str]
|
|
call debug_outstr
|
|
popad
|
|
\}
|
|
}
|
|
|
|
match =FALSE, DEBUG
|
|
{
|
|
|
|
macro print message
|
|
\{
|
|
\}
|
|
|
|
macro pregs
|
|
\{
|
|
\}
|
|
|
|
macro dph1 str
|
|
\{
|
|
\}
|
|
|
|
macro outs str
|
|
\{
|
|
\}
|
|
|
|
} |