'******************************************************************************
'* 
'* INIT OF SPECTRUM-48K (Simply boot ROM to test CPU Z80 emulation)
'*
'* Note: - This script always executed while emulation starting and then 
'*         "used" by other emulation scripts (to provide access to CPU etc.)
'*
'******************************************************************************

? "[INIT] Started emulation of Spectrum-48K"

'Configuring
mem.Size=128*1024 : mem.Limit=0xFFFF '64 Kb of memory

'Assembling
public use object CPU_Z80 as CPU 'processor Z80
cpu.Frequency=3500000 '3,5Mhz
public use object "mboard" as MB : pc.AddDevice(MB) 'motherboard

