mirror of https://github.com/nmlgc/ReC98.git
42 lines
486 B
NASM
42 lines
486 B
NASM
; master library - PC98
|
|
;
|
|
; Description:
|
|
; グラフィック画面を表示する
|
|
;
|
|
; Function/Procedures:
|
|
; void graph_show( void ) ;
|
|
;
|
|
; Parameters:
|
|
; none
|
|
;
|
|
; Returns:
|
|
; none
|
|
;
|
|
; Binding Target:
|
|
; Microsoft-C / Turbo-C / Turbo Pascal
|
|
;
|
|
; Running Target:
|
|
; PC-9801
|
|
;
|
|
; Requiring Resources:
|
|
; CPU: 8086
|
|
;
|
|
; Notes:
|
|
;
|
|
;
|
|
; Compiler/Assembler:
|
|
; TASM 3.0
|
|
; OPTASM 1.6
|
|
;
|
|
; Author:
|
|
; 恋塚昭彦
|
|
;
|
|
; Revision History:
|
|
; 92/11/16 Initial
|
|
|
|
func GRAPH_SHOW
|
|
mov AH,40h
|
|
int 18h
|
|
ret
|
|
endfunc
|