gmod-lcpu/lua/autorun/lcpu_load.lua

60 lines
1.2 KiB
Lua
Raw Normal View History

2023-07-19 03:18:34 -04:00
AddCSLuaFile()
-- prime the native lua module & add clientside files to send
-- if running on the server
2023-07-24 06:50:18 -04:00
if SERVER then
require("lcpu_native")
if LCPUNative.ModuleVersion ~= 1 then
2023-07-24 06:50:18 -04:00
print("Your LCPU native module is somehow lagging behind the Lua code. Please rebuild it.")
LCPUNative = nil
2023-07-24 06:50:18 -04:00
return
end
-- rapid iteration requires rapid solutions
--[[
device = LCPUNative.CreateDevice(0x100000f0, 0x10)
device.a = 12
device.apple = {}
--print(device)
--print(device.a)
--print(device.apple)
function device:Clock()
print("a")
end
function device:Peek(address)
print("peek @ " .. address)
if address == 0x100000f0 then return 0x1010 end -- it a test!
return 0x10000
end
function device:Poke(address, value)
if address == 0x100000f0 then
print("What you doing?")
end
end
function device:Reset()
print("device was reset")
end
cpu = LCPUNative.CreateCPU(64*1024)
cpu:AttachDevice(device)
print(device.Clock)
print(cpu)
-- unrolled test loops ftw
cpu:Cycle();cpu:Cycle();cpu:Cycle();cpu:Cycle();
cpu:Cycle();cpu:Cycle();cpu:Cycle();cpu:Cycle();
cpu:Cycle();cpu:Cycle();cpu:Cycle();cpu:Cycle();
cpu:Cycle();cpu:Cycle();cpu:Cycle();cpu:Cycle();
]]
2023-07-24 06:50:18 -04:00
AddCSLuaFile("entities/gmod_lcpu_cpu.lua")
end