1
0
mirror of https://github.com/elua/elua.git synced 2025-01-08 20:56:17 +08:00
elua/boards/known/sim.lua
Bogdan Marinescu 96fcd19e7c Added more components to the simulator
Also, I should really document the simulator at some point. Not after
a week-end of writing and updating docs though.
2013-05-26 21:34:28 +03:00

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' }
}
}