mirror of
https://github.com/freewilll/apple2-go.git
synced 2024-12-22 04:29:28 +00:00
Renamed InitDisasm to InitInstructionDecoder
This commit is contained in:
parent
d89c7babf0
commit
a5acfb9140
@ -53,7 +53,7 @@ func main() {
|
||||
disableBell = flag.Bool("disable-bell", false, "Disable bell")
|
||||
flag.Parse()
|
||||
|
||||
cpu.InitDisasm()
|
||||
cpu.InitInstructionDecoder()
|
||||
mmu.InitRAM()
|
||||
mmu.InitApple2eROM()
|
||||
|
||||
|
@ -18,7 +18,7 @@ func main() {
|
||||
breakAddressString := flag.String("break", "", "Break on address")
|
||||
flag.Parse()
|
||||
|
||||
cpu.InitDisasm()
|
||||
cpu.InitInstructionDecoder()
|
||||
|
||||
mmu.InitRAM()
|
||||
|
||||
|
@ -309,7 +309,7 @@ func InitOpCodes() {
|
||||
OpCodes[0xFF] = OpCode{Mnemonic: "???", AddressingMode: AddressingModes[AmExpansion]}
|
||||
}
|
||||
|
||||
func InitDisasm() {
|
||||
func InitInstructionDecoder() {
|
||||
InitAddressingModes()
|
||||
InitOpCodes()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user