mirror of
https://github.com/elua/elua.git
synced 2025-01-08 20:56:17 +08:00
a26d5423e1
- platform 'sim' switched to the new build system - fixed a few macro definitions
12 lines
148 B
Bash
Executable File
12 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Setup terminal
|
|
stty -echo raw -igncr
|
|
|
|
# Run simulator
|
|
./elua_lua$1_sim.elf
|
|
|
|
# Restore terminal to default settings
|
|
stty echo cooked
|
|
|