a small bison based cobol interpreter for cptr354
Go to file
Riley Smith 141b10c9c9
clean up codebase, add github action to run test
2024-11-17 02:18:25 -08:00
.github/workflows clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
samples clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
.gitignore Adding testing to lab 5 2024-11-07 11:36:09 -08:00
Makefile clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
README.md clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
expr.c clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
expr.h clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
main.c clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
main_test.c clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
parser.bison clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
parser.bison.new clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
parser_test.c clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
scanner.flex clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
scanner_test.c clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
symbol_map.c clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
symbol_map.h clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
token.h clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00
utest.h clean up codebase, add github action to run test 2024-11-17 02:18:25 -08:00

README.md

COBOL Interpreter Lab

Overview

During my compilers and languages class at Walla Walla University, my group chose to make a COBOL interpreter.

This is the resulting project.

This interpreter is based on the work of Douglas Thain who created the Compiler Book