4 lines
140 B
Bash
Executable file
4 lines
140 B
Bash
Executable file
#! /usr/bin/env bash
|
|
SCRIPT_LOC=$( dirname -- $( readlink -f -- "$0"; ))
|
|
|
|
gcc $SCRIPT_LOC/decoder.c -O0 -g -gdwarf -o $SCRIPT_LOC/8086coded
|