1
0
mirror of https://github.com/ariejan/i6502.git synced 2024-05-28 22:41:34 +00:00
i6502/cpu.go

9 lines
88 B
Go
Raw Normal View History

2014-08-12 19:28:30 +00:00
package i6502
type Cpu struct {
}
func NewCpu() (*Cpu, error) {
return &Cpu{}, nil
}