Skip to content

ANSI-C compiler for Imperial College Instruction Architecture and Compilers coursework. Incomplete.

Notifications You must be signed in to change notification settings

samuelpswang/ICLY2S-IAC-C-Compiler

Repository files navigation

ANSI C to RISC-V Compiler: TeamBS

File Structure

root/
├─ bin/
├─ include/
│  ├─ ast.hpp
│  └─ ...
├─ src/
│  ├─ c_lexer.flex
│  ├─ c_parser.y
│  └─ ...
├─ tests/
├─ ref/
├─ .gitignore
├─ Makefile
└─ README.md
  1. bin/: contains compiled binary files, not committed.
  2. include/: contains user-defined header files, e.g. ast.hpp.
  3. src/: contains lexer, parser, compiler, and command line programs.
  4. test/: contains c program tests.
  5. ref/: contains reference files, e.g. official c grammer.
  6. Makefile: build script.

About

ANSI-C compiler for Imperial College Instruction Architecture and Compilers coursework. Incomplete.

Resources

Stars

Watchers

Forks