'******************************************************************************
'* 
'* INIT OF PC/286-clone (Compatible with AMI 286 BIOS) 
'*
'* 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/286-clone"

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

'Assembling
public use object CPU_i286 as CPU 'processor i286
cpu.Frequency=16000000 '16Mhz
public use object "mboard" as MB : pc.AddDevice(MB) 'motherboard

