'******************************************************************************
'* 
'* INIT OF PC/AT 286 (Model 5170)
'*
'* 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 Model 5170"

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

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

