Fix iglobal directive usage

git-svn-id: svn://kolibrios.org@3342 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Yogev Ezra 2013-03-06 13:29:34 +00:00
parent d990bce2e4
commit 8acd7b0e95
2 changed files with 5 additions and 9 deletions

View File

@ -1,6 +1,4 @@
; <EFBFBD>ste archivo debe ser editado con codificaci¢n CP866
iglobal
msg_sel_ker db "n£cleo", 0
msg_sel_app db "aplicaci¢n", 0
endg

View File

@ -13,10 +13,6 @@
$Revision$
if lang eq sp
include 'sys32-sp.inc'
end if
align 4 ;3A08
build_interrupt_table:
mov edi, idts
@ -78,9 +74,11 @@ iglobal
msg_exc_d db "General protection fault", 0
msg_exc_e db "Page fault", 0
if ~ lang eq sp
msg_sel_ker db "kernel", 0
msg_sel_app db "application", 0
if lang eq sp
include 'sys32-sp.inc'
else
msg_sel_ker db "kernel", 0
msg_sel_app db "application", 0
end if
endg