mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-18 21:02:34 +03:00
7 lines
119 B
Plaintext
7 lines
119 B
Plaintext
|
macro cmp_err code,text_ptr
|
||
|
{
|
||
|
cmp al,code
|
||
|
jne @f
|
||
|
mov [status],text_ptr
|
||
|
@@:
|
||
|
}
|