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

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

'Assembling
public use object CPU_I386 as CPU 'processor i386
public use object "mboard" as MB : pc.AddDevice(MB) 'motherboard

