1
0
mirror of https://github.com/elua/elua.git synced 2025-01-25 01:02:54 +08:00
elua/boards/known/sim.lua
Bogdan Marinescu a26d5423e1 Multiple changes
- platform 'sim' switched to the new build system
- fixed a few macro definitions
2012-07-12 14:07:59 +03:00

17 lines
281 B
Lua

-- eLua simulator running on linux
return {
cpu = 'linux',
components = {
sercon = { uart = 0, speed = 0 },
wofs = true,
romfs = true,
shell = true,
term = { lines = 25, cols = 80 },
},
modules = {
generic = { 'pd', 'math', 'term', 'elua' }
}
}