mirror of
https://github.com/FDOS/kernel.git
synced 2025-07-22 05:14:30 +02:00
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:
parent
51adbac8fd
commit
784e9b7ef5
@ -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]
|
||||
|
Loading…
x
Reference in New Issue
Block a user