https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 4d2c7ab66cb89596732d44bc98f0da2300f19769 authored by alex@thinkpad on 14 May 2016, 16:27:02 UTC
Rewritten 12-bit and 10-bit raw with low-level EDMAC calls and register configurations (generic, no more stubs needed)
Tip revision: 4d2c7ab
hello.lua
-- A very simple script.

function main()
    menu.close()
    console.show()
    print "Hello, World!"
    print "Press any key to exit."
    key.wait()
    console.hide()
end

keymenu = menu.new
{
    name   = "Hello, World!",
    help   = "Prints 'Hello World' on the console",
    select = function(this) task.create(main) end,
}

back to top