Zorya-NEO/mods/util_oefiv2/bios.lua

25 lines
453 B
Lua

local function gen_proto()
return {
methods = {
get = function()
return "< Virtual BIOS >"
end,
getData = function()
return string.char(2)..drive.."Zorya NEO BIOS"..string.char(0):rep(6)
end,
setData = function()
return ""
end,
set = function()
return ""
end,
getLabel = function()
return "Virtual OEFI BIOS"
end,
setLabel = function()
return "Virtual OEFI BIOS"
end
},
docs = {}
}
end