'******************************************************************************
'* 
'* INIT OF PC "PC/386 ISA" (Generic PC/386 ISA 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 PC/386 ISA"

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

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

