1
0
mirror of https://github.com/elua/elua.git synced 2025-01-25 01:02:54 +08:00
elua/boards/known/sim.lua

17 lines
281 B
Lua
Raw Normal View History

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