; ============================================================================
;
; LT-DOS - Int 21h printer
;
; ============================================================================
; ----------------------------------------------------------------------------
; Int 21h, function 04h - write character to printer
; ----------------------------------------------------------------------------
; INT21 INPUT: AH = 05h (function code)
; DL = ASCII character to print
; ----------------------------------------------------------------------------
; NOTES: - Check for Ctrl+C (executes Int 23h)
; - If printer is busy it will wait until it becomes free
; ----------------------------------------------------------------------------
Int2105:
ret
; ----------------------------------------------------------------------------
; Data
; ----------------------------------------------------------------------------
|