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

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

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

