Class: C64::Cpu

Inherits:
Object
  • Object
show all
Defined in:
lib/c64.rb

Instance Method Summary collapse

Constructor Details

#initializeCpu

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

#stepObject



11
12
13
# File 'lib/c64.rb', line 11

def step

end