forked from KolibriOS/kolibrios
Replace 'equ' macros with '=' ones.
They appear in symbols file. They don't require parentheses. They are shorter. git-svn-id: svn://kolibrios.org@7136 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
$Revision$
|
||||
|
||||
|
||||
GREEDY_KERNEL equ 0
|
||||
GREEDY_KERNEL = 0
|
||||
|
||||
struct APP_HEADER_00_
|
||||
banner dq ?
|
||||
@@ -889,10 +889,10 @@ common_app_entry:
|
||||
popad
|
||||
iretd
|
||||
|
||||
EFL_IF equ 0x0200
|
||||
EFL_IOPL1 equ 0x1000
|
||||
EFL_IOPL2 equ 0x2000
|
||||
EFL_IOPL3 equ 0x3000
|
||||
EFL_IF = 0x0200
|
||||
EFL_IOPL1 = 0x1000
|
||||
EFL_IOPL2 = 0x2000
|
||||
EFL_IOPL3 = 0x3000
|
||||
|
||||
align 4
|
||||
proc set_app_params stdcall,slot:dword, params:dword, flags:dword
|
||||
|
Reference in New Issue
Block a user