mirror of
https://github.com/elua/elua.git
synced 2025-01-25 01:02:54 +08:00
17 lines
281 B
Lua
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' }
|
||
|
}
|
||
|
}
|
||
|
|