mirror of https://github.com/nmlgc/ReC98.git
42 lines
490 B
NASM
42 lines
490 B
NASM
; master library - MS-DOS
|
|
;
|
|
; Description:
|
|
; DOSのキーバッファのクリア
|
|
;
|
|
; Function/Procedures:
|
|
; void dos_keyclear( void ) ;
|
|
;
|
|
; Parameters:
|
|
; none
|
|
;
|
|
; Returns:
|
|
; none
|
|
;
|
|
; Binding Target:
|
|
; Microsoft-C / Turbo-C / Turbo Pascal
|
|
;
|
|
; Running Target:
|
|
; MS-DOS
|
|
;
|
|
; Requiring Resources:
|
|
; CPU: 8086
|
|
;
|
|
; Notes:
|
|
;
|
|
;
|
|
; Compiler/Assembler:
|
|
; TASM 3.0
|
|
; OPTASM 1.6
|
|
;
|
|
; Author:
|
|
; 恋塚昭彦
|
|
;
|
|
; Revision History:
|
|
; 92/11/17 Initial
|
|
|
|
func DOS_KEYCLEAR
|
|
mov AX,0c00h
|
|
int 21h
|
|
ret
|
|
endfunc
|