#!/bin/bash

# Check if an argument was provided
if [ -z "$1" ]; then
    echo "Error: No input file specified."
    echo "Usage: $0 <filename.c>"
    exit 1
fi

gcc -S -masm=intel -fverbose-asm "$1"
