mirror of https://github.com/nmlgc/ReC98.git
140 lines
3.2 KiB
NASM
140 lines
3.2 KiB
NASM
; Hiper library
|
|
;
|
|
; Description:
|
|
; 起動した PC-98 マシンの情報を得る。
|
|
;
|
|
; Procedures/Functions:
|
|
; int get_machine_98( void );
|
|
;
|
|
; Parameters:
|
|
;
|
|
; Returns:
|
|
; bit 3210 : bit 5 が 1 のとき
|
|
; xxx0 : Note
|
|
; xxx1 : DeskTop
|
|
; xx0x : NEC #0.07 以降
|
|
; xx1x : EPSON #0.07 以降
|
|
; 00xx : Normal mode only (400 lines)
|
|
; 01xx : MATE mode supported (480 lines)
|
|
; 1xxx : High-resolustion mode
|
|
;
|
|
; Binding Target:
|
|
; Microsoft-C / Turbo-C
|
|
;
|
|
; Running Target:
|
|
; PC-9801
|
|
;
|
|
; Requiring Resources:
|
|
; CPU: 8086
|
|
;
|
|
; Notes:
|
|
;
|
|
; Compiler/Assembler:
|
|
; OPTASM 1.6
|
|
;
|
|
; Author:
|
|
; のろ/V(H.Maeda)
|
|
;
|
|
; Revision History:
|
|
; 93/ 7/19 Initial: Hiper.lib
|
|
; 93/07/29 add PC-9821 check
|
|
; 93/08/10 add PC-98 color/mono check ?
|
|
; & _get_machine -> get_machine
|
|
; 93/08/25 98 MATE check bugfix
|
|
; 93/09/19 ret 処理が... (^_^;
|
|
; 93/10/06 si を壊していた(^_^;
|
|
; 93/10/22 Mono&Color チェック廃止、NEC, EPSON チェック追加
|
|
; また、EPSON note もチェック可能
|
|
; 93/11/ 3 AX check で、0040:00e0 〜を
|
|
; 16 byte から 12 byte check に変更
|
|
; 93/12/11 Initial: getmachi.asm/master.lib 0.22 (from hiper.lib)
|
|
; 94/01/05 get_machine() を、get_machine_at()、get_machine_98() に分割
|
|
; それに伴い、それぞれ、getmachi.asm、atmachi.asm、98machi.asm
|
|
; にファイルを分離。
|
|
; 94/02/13 DOS/V Extention/SuperDrivers の check 追加
|
|
; GET_MACHINE_AT -> GET_MACHINE_AT2 に。(暫定処置)
|
|
; 94/03/25 FM-R の check 追加
|
|
; GET_MACHINE_98 -> GET_MACHINE_982 に。(暫定処置)
|
|
; 94/07/11 PC486noteAU 追加
|
|
; 94/12/21: [M0.23] getmac92.asm 94-07-12 00:24:40 を改名して取り込み
|
|
; 95/ 2/28 [M0.22k] DESKTOPビットの意味が逆だったので反転
|
|
|
|
|
|
; PC-9801 関係
|
|
|
|
FMR_98 EQU 01000000b
|
|
PC9801 EQU 00100000b
|
|
NOTE98 EQU 00000001b or PC9801 ; 0:DeskTop / 1:Note
|
|
NOTE98_XOR EQU 00000001b ; 1:DESKTOP / 0:Noteに変更
|
|
EPSON EQU 00000010b or PC9801 ; 0:NEC / 1:EPSON
|
|
LINE480 EQU 00000100b or PC9801 ; 0:400line / 1:480line(MATE mode)
|
|
HIRESO EQU 00001000b or PC9801 ; 0:Normal / 1:Hi-resorusion
|
|
COLOR EQU 00010000b or PC9801 ; 0:Mono / 1:color
|
|
|
|
get_machine_98 proc ; get_machine_98(void)
|
|
_call CHECK_MACHINE_FMR
|
|
jnz short @@NOT_FMR
|
|
mov AX,FMR_98
|
|
jmp short @@GET_AT_MACHINE_EXIT
|
|
@@NOT_FMR:
|
|
|
|
; PC-9801 関係
|
|
|
|
xor al,al ; flag clear
|
|
|
|
mov dx,0fff7h
|
|
mov es,dx
|
|
mov dx,1827h
|
|
cmp dx,es:[0000h]
|
|
jne short @@EPSON_NORMAL
|
|
or al,HIRESO or EPSON
|
|
jmp short @@PC9821_CHK
|
|
|
|
@@EPSON_NORMAL:
|
|
mov dx,0fd80h
|
|
mov es,dx
|
|
mov dx,2a27h ; Normal EPSON check
|
|
cmp dx,es:[0002h]
|
|
jne short @@NEC_MACHINE
|
|
mov ah,es:[0004h]
|
|
mov bx,offset EPSON_NOTES
|
|
or al,EPSON
|
|
@@LOOP_EPSON:
|
|
mov dl,ds:[bx]
|
|
or dl,dl
|
|
je short @@PC9821_CHK
|
|
inc bx
|
|
cmp ah,dl
|
|
jne @@LOOP_EPSON
|
|
@@EPSON_NOTE:
|
|
or al,NOTE98
|
|
jmp short @@PC9821_CHK
|
|
|
|
@@NEC_MACHINE:
|
|
xor bx,bx
|
|
mov es,bx
|
|
|
|
or al,byte ptr es:[501h]
|
|
and al,08h ; Hireso flag check
|
|
or al,PC9801 ; PC9801 ノーマル?
|
|
|
|
mov dh,byte ptr es:[400h]
|
|
and dh,80h ; Note flag check
|
|
rol dh,1
|
|
or al,dh
|
|
@@PC9821_CHK:
|
|
mov dh,byte ptr es:[045ch]
|
|
and dh,40h ; PC-9821 flag heck
|
|
ror dh,1 ; dh >> 1
|
|
ror dh,1 ; dh >> 1
|
|
ror dh,1 ; dh >> 1
|
|
ror dh,1 ; dh >> 1
|
|
or al,dh
|
|
xor ah,ah
|
|
xor al,NOTE98_XOR ; noteビットを逆転 ## がーん ##
|
|
@@GET_AT_MACHINE_EXIT:
|
|
mov Machine_State,ax
|
|
; Hack (jmp GET_MACHINE_DOSBOX)
|
|
db 0e9h, 057h, 001h
|
|
endp
|