1
0
mirror of https://github.com/Adorable-Catgirl/Zorya-NEO.git synced 2024-07-21 20:40:29 +10:00
Zorya-NEO/mods/util_oefiv2/bios.lua

25 lines
453 B
Lua
Raw Normal View History

local function gen_proto()
2020-01-15 12:07:27 +11:00
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