Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/whatghost/simple-c-compiler
a simple c language compiler 一个很简单的c编译器,仅支持少部分的简单功能
https://github.com/whatghost/simple-c-compiler
Last synced: 8 days ago
JSON representation
a simple c language compiler 一个很简单的c编译器,仅支持少部分的简单功能
- Host: GitHub
- URL: https://github.com/whatghost/simple-c-compiler
- Owner: WhatGhost
- Created: 2020-10-22T06:24:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-22T06:24:33.000Z (over 4 years ago)
- Last Synced: 2024-11-19T01:53:48.679Z (2 months ago)
- Language: C
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# simple-c-compiler
a simple c language compiler 一个很简单的c编译器,仅支持少部分的简单功能编译原理课程的大作业,支持简单的if,else,while,for和简单的整数浮点数的赋值,计算和输入输出语句。
zeinanshou目录中是源代码,为一个Parser Generator项目,yacc和lex程序在myparser.y和mylex.l中
编译好的程序读取D盘的tmp.c文件,输出到D盘的out.asm文件中,输出的为MASM32汇编程序,需要用MASM32的汇编器变成二进制可执行文件。