'******************************************************************************
'* 
'* INIT OF PC "SPC 486/ISA-clone" (Script PC generic 486-clone 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 SPC 486/ISA-clone"

'Configuring
mem.Size=16*1024*1024 '16 Mb of memory

'Assembling
public use object CPU_I486 as CPU 'processor i486
cpu.Frequency=25000000 '25Mhz
public use object "mboard" as MB : pc.AddDevice(MB) 'motherboard

