ivanizag / iz6502

6502 and 65c02 emulator in Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iz6502 - 6502 and 65c02 emulator in Go

Go Reference

6502 and 65c02 emulator library for Go.

It is being used in:

  • Apple II emulator izapple2
  • Acorn MOS execution environment bbz
  • Example ehBasic interpreter ehBasic

See the library documentation in pkg.go.dev

Example

package main

import (
	"github.com/ivanizag/iz6502"
)

func main() {
	// Prepare cpu and memory
	memory := new(iz6502.FlatMemory)
	cpu := iz6502.NewNMOS6502(memory)

	// Load program the memory
	memory.Poke(0x0000, 0xe8) // INX
	memory.Poke(0x0001, 0x4c) // JMP $0000
	memory.Poke(0x0002, 0x00)
	memory.Poke(0x0003, 0x00)

	// Set inital state
	cpu.SetTrace(true)
	cpu.SetAXYP(0, 0, 0, 0)
	cpu.SetPC(0x0000)

	// Run the emulation
	for {
		cpu.ExecuteInstruction()

		_, x, _, _ := cpu.GetAXYP()
		if x == 0x10 {
			// Let's stop
			break
		}
	}
}

Test suites

The emulation is instruction based and has been tested with:

About

6502 and 65c02 emulator in Go

License:GNU General Public License v3.0


Languages

Language:Go 100.0%