-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpc.inc
41 lines (36 loc) · 1.36 KB
/
pc.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
;******************************************************************************
; PC model dependent
;******************************************************************************
;
;------------------------------------------------------------------------------
%if TOWNS
;------------------------------------------------------------------------------
extern check_TOWNS_16
extern init_TOWNS_16
extern init_TOWNS_32
extern exit_TOWNS_32
extern exit_TOWNS_16
extern load_nsdd
;------------------------------------------------------------------------------
%elif PC_98
;------------------------------------------------------------------------------
extern check_PC98_16
extern init_PC98_16
extern init_PC98_32
extern exit_PC98_32
extern exit_PC98_16
;------------------------------------------------------------------------------
%elif PC_AT
;------------------------------------------------------------------------------
extern check_AT_16
extern init_AT_16
extern init_AT_32
extern exit_AT_32
extern exit_AT_16
;------------------------------------------------------------------------------
%elif DOS_GENERAL_PURPOSE
;------------------------------------------------------------------------------
extern init_DOS_general_purpose_16
extern get_8259a_vector
;------------------------------------------------------------------------------
%endif