This repository is a simple compiler from C to Assembly (nasm x86).
$ sudo apt-get install bison
$ sudo apt-get install flex
$ git clone https://github.com/macartur/C_goto_Assembly
$ cd C_goto_Assembly
$ make
$ make run
$ nasm -f elf32 <program>.asm
$ gcc -m32 <program>.o -o <program>