disk:
    open(path).
        read()
        write(text)
        append(text)
    list(path)
    fileExists(path)
    directoryExists(path)
    makeDirectory(path)
    delete(path)
    copy(path)
    move(path)
    getSize(path)
    type -> "hdd" | "fdd" | "udd"
    id -> "disk_[id]"
    __UDATA_id -> [id]

computer.
    time()
    setData(address, data)
    getData(address)
    saveData()
    beep(freq, length)
    getMachineEvent()
    shutdown()
    rebbot()

screen.
    print(...)
    printInline(...)
    clear()
    id -> "screen_[id]"
    __UDATA_id -> [id]

internet:
    get(url)

bios.
    getData()
    setData(text)
    id -> "bios"

uDisk: labeled disk
    readBytes(start, length)
    writeBytes(data)
    getSize()
    id -> "disk_[id]"
    __UDATA_id -> [id]