Files
brainfuck-on-asm/compile.sh
2025-06-21 16:34:17 +03:00

6 lines
108 B
Bash
Executable File

#!/bin/bash
as *.s -o bf-cat.o
ld bf-cat.o -N -o bf-cat
strip bf-cat
echo "size =" $(wc -c bf-cat) "octets"