'******************************************************************************
'* 
'* INIT OF BK-0010 (Soviet 16-bit home computer)
'*
'* 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 BK-0010"

'Configuring
mem.Size=64*1024 : mem.Limit=0xFFFF '64 Kb of memory

'Assembling
public use object CPU_PDP11 as CPU 'processor PDP-11
cpu.Frequency=3000000 '3Mhz
cpu.PC=0x8000
public use object "mboard" as MB : pc.AddDevice(MB) 'motherboard

