-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystemid.s
52 lines (48 loc) · 1.8 KB
/
systemid.s
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
42
43
44
45
46
47
48
49
50
51
52
/*
<A><-------B------> <C->
1100 0000 0000 0000 1000 0001 0000
0000 0000 0000 0000 0000 0000 0000
^^^^ ^^^^ ^^^^ ^^^^ ^^^^ ^ ^
|||| |||| |||| |||| |||| | |
|||| |||| |||| |||| |||| | +----- Uses Windows CE
|||| |||| |||| |||| |||| |
|||| |||| |||| |||| |||| +----- VGA box support
|||| |||| |||| |||| ||||
|||| |||| |||| |||| |||+----- Other expansions
|||| |||| |||| |||| ||+----- Puru Puru pack
|||| |||| |||| |||| |+----- Mike device
|||| |||| |||| |||| +----- Memory card
|||| |||| |||| |||+------ Start + A + B + Directions
|||| |||| |||| ||+------ C button
|||| |||| |||| |+------ D button
|||| |||| |||| +------ X button
|||| |||| |||+------- Y button
|||| |||| ||+------- Z button
|||| |||| |+------- Expanded direction buttons
|||| |||| +------- Analog R trigger
|||| |||+-------- Analog L trigger
|||| ||+-------- Analog horizontal controller
|||| |+-------- Analog vertical controller
|||| +-------- Expanded analog horizontal
|||+--------- Expanded analog vertical
||+--------- Gun
|+--------- Keyboard
+--------- Mouse
*/
.section .text.systemid
.ascii "SEGA SEGAKATANA " /* 0x00 H/W identifier */
.ascii "SEGA ENTERPRISES" /* 0x10 H/W Vendor ID */
.ascii "39F1 " /* 0x20 Media ID */
.ascii "GD-ROM1/1 " /* Media information */
.ascii "JUE " /* 0x30 Compatible Area Symbol */
.ascii "C000810 " /* Compatible peripherals */
.ascii "HDR-0900 " /* Product number */
.ascii "V0.000" /* Version number */
.ascii "19980901" /* Release date */
.ascii " " /* Reserved */
.ascii "1ST_READ.BIN"
.ascii " " /* Reserved */
.ascii "SEGA LC-KAISYAID" /* Maker identifier */
.ascii "SAMPLE GAME " /* Game title */
.fill (96-16),1,0x20 /* Game title */
.fill 32,1,0x20 /* Reserved */