'******************************************************************************
'* 
'* INIT OF VECTOR-06C (Soviet 8-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 Vector-06C"

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

'Assembling
public use object CPU_I8080 as CPU 'processor i8080
cpu.Frequency=3000000 '3Mhz
public use object "mboard" as MB : pc.AddDevice(MB) 'motherboard

