Skip to content

Instantly share code, notes, and snippets.

@MasWag
Last active November 28, 2015 00:22
Show Gist options
  • Save MasWag/9ae16663550c3529b680 to your computer and use it in GitHub Desktop.
Save MasWag/9ae16663550c3529b680 to your computer and use it in GitHub Desktop.
#!/usr/bin/awk -f
BEGIN {
PC="0";
}
!/\.text|\.data|\.globl|\.long|:|^[\ \t]*#/{
$0 = $0" # "PC;
PC++;
};
{print};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment