1
0
mirror of https://github.com/ariejan/i6502.git synced 2024-05-28 22:41:34 +00:00
i6502/memory.go
2014-08-13 09:26:33 +02:00

8 lines
117 B
Go

package i6502
type Memory interface {
Size() uint16
Read(address uint16) byte
Write(address uint16, data byte)
}