StupidOS/lib/base.inc

17 lines
146 B
PHP
Raw Normal View History

2023-01-15 19:25:25 +00:00
extern log_impl
2023-01-17 10:35:11 +00:00
%macro LOG 1-*
%rep %0
%rotate -1
2023-01-15 19:25:25 +00:00
push %1
2023-01-17 10:35:11 +00:00
%endrep
2023-01-15 19:25:25 +00:00
push file
call log_impl
2023-01-17 10:35:11 +00:00
add esp, 4
%rep %0
add esp, 4
%endrep
2023-01-15 19:25:25 +00:00
%endmacro