mirror of
https://github.com/g012/l65.git
synced 2025-02-08 10:30:37 +00:00
6 lines
158 B
Plaintext
6 lines
158 B
Plaintext
-- set cpu to HuC6280
|
|
cpu = require "6502"
|
|
setmetatable(_ENV, cpu)
|
|
cpu.zeropage = function(x) if x >= 0x2000 and x <= 0x20ff then return x&0xff end end
|
|
|