Files
lba1-classic/LIB386/LIB_SYS/HARDERR.ASM

44 lines
2.7 KiB
NASM

;/*══════════════════════════════════════════════════════════════════════════*
; ██┐ ██┐ ██████┐ ██████┐ █████┐ ██████┐ ██████┐ ██████┐
; ██│ ██│ ██┌─██│ ██┌─██│ ██┌─██┐ ██┌───┘ ██┌─██│ ██┌─██│
; ██████│ ██████│ ██████│ ██│ ██│ █████┐ ██████│ ██████│
; ██┌─██│ ██┌─██│ ██┌██┌┘ ██│ ██│ ██┌──┘ ██┌██┌┘ ██┌██┌┘
; ██│ ██│ ██│ ██│ ██│└██┐ █████┌┘ ██████┐ ██│└██┐ ██│└██┐
; └─┘ └─┘ └─┘ └─┘ └─┘ └─┘ └────┘ └─────┘ └─┘ └─┘ └─┘ └─┘
; *══════════════════════════════════════════════════════════════════════════*/
;
;/*──────────────────────────────────────────────────────────────────────────*/
.386p
.model SMALL, SYSCALL
;/*───────────────────────────────────────────────────────────────────────*/
.DATA
;/*══════════════════════════════════════════════════════════════════════════*/
.CODE
public NoLanguage NewInt24
;/*══════════════════════════════════════════════════════════════════════════*/
NewInt24 PROC FAR
mov al, 1
iret
NewInt24 endp
;/*══════════════════════════════════════════════════════════════════════════*/
; The
End