1
0
mirror of https://github.com/ariejan/i6502.git synced 2024-05-28 22:41:34 +00:00
i6502/cpu.go
Ariejan de Vroom 57b940dce1 Add NewCpu()
2014-08-12 21:28:30 +02:00

9 lines
88 B
Go

package i6502
type Cpu struct {
}
func NewCpu() (*Cpu, error) {
return &Cpu{}, nil
}