#!/bin/bash # Assembly Build Script SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)" cd "$SCRIPT_DIR" echo "=== Assembly Build ===" echo "" # Kompilera Assembly-programmet (använder C-koden för pi-beräkning) gcc -o bin/print_hej src/print_hej.c if [ $? -eq 0 ]; then echo "✓ Kompilering lyckades!" echo "Binär: bin/print_hej" echo "" echo "För att köra:" echo " ./bin/print_hej [decimaler]" else echo "✗ Kompilering misslyckades!" exit 1 fi