13 lines
166 B
Bash
Executable File
13 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo "[Emulator] Generating build files..."
|
|
cmake .
|
|
|
|
|
|
echo "[Emulator] Building..."
|
|
make
|
|
|
|
echo "[Emulator] Running emulator..."
|
|
./basic1_emulator
|