Fix divide error message text

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/branches/UNSTABLE@1086 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Luchezar Georgiev 2005-01-04 19:05:08 +00:00
parent 51adbac8fd
commit 784e9b7ef5

View File

@ -116,7 +116,7 @@ cpm_error: mov al,0
;
; interrupt zero divide handler:
; print a message 'Interrupt divide by zero'
; print a message 'Interrupt divide error'
; Terminate the current process
;
; VOID INRPT far
@ -138,12 +138,12 @@ hex_loop:
jae hex_loop
ret
divide_by_zero_message db 0dh,0ah,'Interrupt divide by zero, stack:',0dh,0ah,0
divide_error_message db 0dh,0ah,'Interrupt divide error, stack:',0dh,0ah,0
global reloc_call_int0_handler
reloc_call_int0_handler:
mov si,divide_by_zero_message
mov si,divide_error_message
zero_message_loop:
mov al, [cs:si]