mirror of
https://github.com/elua/elua.git
synced 2025-01-08 20:56:17 +08:00
96fcd19e7c
Also, I should really document the simulator at some point. Not after a week-end of writing and updating docs though.
18 lines
343 B
Lua
18 lines
343 B
Lua
-- eLua simulator running on linux
|
|
|
|
return {
|
|
cpu = 'linux',
|
|
components = {
|
|
sercon = { uart = 0, speed = 0 },
|
|
wofs = true,
|
|
romfs = true,
|
|
advanced_shell = true,
|
|
term = { lines = 25, cols = 80 },
|
|
mmcfs = { spi = 0, cs_port = 0, cs_pin = 0 },
|
|
},
|
|
modules = {
|
|
generic = { 'pd', 'all_lua', 'term', 'elua' }
|
|
}
|
|
}
|
|
|