27 lines
259 B
PHP
27 lines
259 B
PHP
; file: base.inc
|
|
|
|
extern log_impl
|
|
|
|
; macro: LOG
|
|
;
|
|
; example:
|
|
; (start code)
|
|
; LOG msg_boot_info, eax
|
|
; (end)
|
|
%macro LOG 1-*
|
|
%ifdef DEBUG
|
|
%rep %0
|
|
%rotate -1
|
|
push %1
|
|
%endrep
|
|
push file
|
|
|
|
call log_impl
|
|
|
|
add esp, 4
|
|
%rep %0
|
|
add esp, 4
|
|
%endrep
|
|
%endif
|
|
%endmacro
|