mirror of
https://github.com/DoctorWkt/unix-jun72.git
synced 2026-04-07 22:20:39 +00:00
12 lines
234 B
Bash
Executable File
12 lines
234 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# use the v7 assembler to assemble some userland code into an 0405 binary.
|
|
# Requires the first .s file to set ". = . + 40014".
|
|
#
|
|
|
|
. tools/assemv7.cfg
|
|
export APOUT_ROOT
|
|
$APOUT $APOUT_ROOT/bin/as "$@" && tools/fixaout.py
|
|
|
|
|