-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
85 lines (78 loc) · 1.76 KB
/
main.go
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package main
import (
"os"
"runtime"
"github.com/tsmcalister/go-chip-8/emulator"
)
func main() {
runtime.GOMAXPROCS(4)
filePath := "programs/"
if len(os.Args) > 1 {
filePath += os.Args[1]
} else {
filePath += "pic.ch8"
}
emulator.InitMemory()
emulator.LoadProgram(filePath)
for {
emulator.EmulateStep()
}
/*
emulator.ResetEmulator()
program := []uint16{
0xD015, // draw sprite starting at index
0x6005, // set vx = 0 to 5
0xA006, // set index to 6
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA00A, // set index to 12
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA00F, // set index to 12
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA014, // set index to 12
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA019, // set index to 12
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA01E, // set index to 12
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA023, // set index to 12
0xD015, // draw sprite
0x7106, // add 6 to y
0x6000, // set vx = to 0
0xA028, // set index to 12
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA02D, // set index to 12
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA032, // set index to 12
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA037, // set index to 12
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA03C, // set index to 12
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA041, // set index to 12
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA046, // set index to 12
0xD015, // draw sprite
0x7005, // add 5 to vx
0xA04B, // set index to 12
0xD015, // draw sprite
}
emulator.LoadProgramHex(program)
i := 0
for i < len(program) {
emulator.EmulateStep()
i++
}
*/
}