Load module and cast core instance at startup Requires latest valabind. Add RCore::ncast api Use pkg-config everywhere to fix lua plugin build Fix install path for lua bindings Export RCore instance to #!lua shell Example: #!lua print(c.assembler.bits)
7 lines
111 B
Lua
7 lines
111 B
Lua
-- using RCore API as the unique entrypoint --
|
|
require "r_core"
|
|
|
|
c = r_core.RCore ()
|
|
print(c)
|
|
c:prompt_loop()
|
|
|