Class: C64::Cpu
- Inherits:
-
Object
- Object
- C64::Cpu
- Defined in:
- lib/c64.rb
Instance Method Summary collapse
-
#initialize ⇒ Cpu
constructor
A new instance of Cpu.
- #step ⇒ Object
Constructor Details
#initialize ⇒ Cpu
Returns a new instance of Cpu.
6 7 8 9 |
# File 'lib/c64.rb', line 6 def initialize @ram = ([0] * 0xffff).pack("C*") end |
Instance Method Details
#step ⇒ Object
11 12 13 |
# File 'lib/c64.rb', line 11 def step end |