Method: Zemu::Config::ROM#initialize

Defined in:
lib/zemu/config.rb

#initializeROM

Constructor.

Takes a block in which the parameters of the memory block can be initialized.

All parameters can be set within this block. They become readonly as soon as the block completes.

Examples:


Zemu::Config::ROM.new do
    address 0x8000
    size 256
end


316
317
318
# File 'lib/zemu/config.rb', line 316

def initialize
    super
end