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

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

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

