Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - TINY
Search - TINY - List
DL : 1
tiny编译器,编译<编译原理实践>书中定义的tiny程序,采用一次扫描算法,采用gnu版权发布-tiny compiler, compiler lt; Compiler Principle practice gt; The tiny book definition of procedures, using a scanning algorithm, using copyright release gnu
Update : 2008-10-13 Size : 14.67kb Publisher : chai

这是一个基于命令行的编译器,它是在一个国外教学使用的编译器tiny基础上改写的。 这个代码对理解编译器有不错的作用-This is a command-line compiler, which is the use of teaching a foreign compiler tiny based on the rewrite. The code compiler for understanding the role of a good
Update : 2008-10-13 Size : 286.42kb Publisher : 梁立平

Tiny Machine的源码,一个简单易学习的-Tiny Machine source code, simple is easy the east which studies east
Update : 2008-10-13 Size : 4.27kb Publisher : 周水斌

DL : 0
TINY+编译器源码 语言表达式的定义 (1) <表达式> ::= <算术表达式>|<逻辑表达式> (2) <算术表达式> ::= <项>±<算术表达式>|±<项>|<项> (3) <项> ::= <因子>*<项>|<因子>/<项>|<因子> (4) <因子> ::= <算术量> (5) <算术量> ::= <标识符>|<整数> (6) <逻辑表达式> ::= <布尔项> or <逻辑表达式>|<布尔项> (7) <布尔项> ::= <布尔因子> and <布尔项> |<布尔因子> (8) <布尔因子> ::= <布尔量>|not<布尔因子> (9) <布尔量> ::= <逻辑表达式> | <布尔常数>|<标识符> |<算术表达式><关系符><算术表达式> (10) <关系符> ::= <|>|<>|<=| >=| =
Update : 2008-10-13 Size : 110.09kb Publisher : lane

salvo-tiny-avr是一个用在AVR上的开销极小的OS.
Update : 2008-10-13 Size : 1.79mb Publisher : 森淼

DL : 1
tiny 编译器-tiny compiler
Update : 2008-10-13 Size : 24.98kb Publisher : 瞿忠

DL : 1
一个编译器,可将名为TINY的语言转化为等价的C语言-a compiler can be called TINY language into the equivalent of C language
Update : 2008-10-13 Size : 1.69mb Publisher : 冼华

DL : 0
一个小型C语言编译器- A small C language compiler
Update : 2025-02-19 Size : 55kb Publisher :

http://www.programmersheaven.com/zone6/cat700/16060.htm A tiny BASIC interpreter with C++ sourcecode
Update : 2025-02-19 Size : 206kb Publisher : 何福保

rtx-tiny源码-rtx-tiny FOSS
Update : 2025-02-19 Size : 7kb Publisher : 祥子

Tiny Machine的源码,一个简单易学习的-Tiny Machine source code, simple is easy the east which studies east
Update : 2025-02-19 Size : 4kb Publisher : 周水斌

DL : 0
tiny 编译器-tiny compiler
Update : 2025-02-19 Size : 249kb Publisher : 瞿忠

DL : 0
一个编译器,可将名为TINY的语言转化为等价的C语言-a compiler can be called TINY language into the equivalent of C language
Update : 2025-02-19 Size : 1.69mb Publisher : 冼华

DL : 0
tiny编译器,编译<编译原理实践>书中定义的tiny程序,采用一次扫描算法,采用gnu版权发布-tiny compiler, compiler lt; Compiler Principle practice gt; The tiny book definition of procedures, using a scanning algorithm, using copyright release gnu
Update : 2025-02-19 Size : 248kb Publisher : chai

这是一个基于命令行的编译器,它是在一个国外教学使用的编译器tiny基础上改写的。 这个代码对理解编译器有不错的作用-This is a command-line compiler, which is the use of teaching a foreign compiler tiny based on the rewrite. The code compiler for understanding the role of a good
Update : 2025-02-19 Size : 286kb Publisher : 梁立平

DL : 0
TINY+编译器源码 语言表达式的定义 (1) <表达式> ::= <算术表达式>|<逻辑表达式> (2) <算术表达式> ::= <项>±<算术表达式>|±<项>|<项> (3) <项> ::= <因子>*<项>|<因子>/<项>|<因子> (4) <因子> ::= <算术量> (5) <算术量> ::= <标识符>|<整数> (6) <逻辑表达式> ::= <布尔项> or <逻辑表达式>|<布尔项> (7) <布尔项> ::= <布尔因子> and <布尔项> |<布尔因子> (8) <布尔因子> ::= <布尔量>|not<布尔因子> (9) <布尔量> ::= <逻辑表达式> | <布尔常数>|<标识符> |<算术表达式><关系符><算术表达式> (10) <关系符> ::= <|>|<>|<=| >=| =-err
Update : 2025-02-19 Size : 110kb Publisher : lane

DL : 0
这是一个小型语言tiny的编译器,包括词法分析、语法分析、语义分析、代码生成等功能-This is a tiny mini-language compiler, including lexical analysis, syntax analysis, semantic analysis, code generation and other functions
Update : 2025-02-19 Size : 278kb Publisher : 陈星

Syntax of TINY+ An EBNF grammar for TINY+ is as follows (Strings in bold are terminals): 1. program -> declarations stmt-sequence 2. declarations -> decl declarations |² 3. decl -> type-specifi er varlist 4. type-specifi er -> int | bool | string 5. varlist -> identifi er { , identifi er } 6. stmt-sequence -> statement { statement } 7. statement -> if-stmt | repeat-stmt | assign-stmt | read-stmt | write-stmt | while-stmt 8. while-stmt -> while bool-exp do stmt-sequence end 9. if-stmt -> if bool-exp then stmt-sequence [else stmt-sequence] end 10. repeat-stmt -> repeat stmt-sequence until bool-exp 11. assign-stmt -> identifi er := exp 12. read-stmt -> read identifi er 13. write-stmt -> write exp 14. exp -> arithmetic-exp | bool-exp | string-exp 15. arithmetic-exp -> term { addop term } 16. addop -> + | --Syntax of TINY+ An EBNF grammar for TINY+ is as follows (Strings in bold are terminals): 1. program-> declarations stmt-sequence 2. declarations-> decl declarations |² 3. decl-> type-specifi er varlist 4. type-specifi er-> int | bool | string 5. varlist-> identifi er { , identifi er } 6. stmt-sequence-> statement { statement } 7. statement-> if-stmt | repeat-stmt | assign-stmt | read-stmt | write-stmt | while-stmt 8. while-stmt-> while bool-exp do stmt-sequence end 9. if-stmt-> if bool-exp then stmt-sequence [else stmt-sequence] end 10. repeat-stmt-> repeat stmt-sequence until bool-exp 11. assign-stmt-> identifi er := exp 12. read-stmt-> read identifi er 13. write-stmt-> write exp 14. exp-> arithmetic-exp | bool-exp | string-exp 15. arithmetic-exp-> term { addop term } 16. addop->+ |-
Update : 2025-02-19 Size : 1.21mb Publisher : gavinfeng

DL : 0
tiny 算法 试下简单的语法分析 需要分析的字符 输入至input.txt 结果输出与output.txt-tiny algorithm for the simple test of grammatical analysis requires analysis of the results of characters input to output output.txt input.txt
Update : 2025-02-19 Size : 1.02mb Publisher : 刘峰

DL : 0
此是Tiny编译器的一个模版,很经典的编程,从最近的扫描,语法分析,到语义分析,再到代码的生成,每一步都比较完美!-This is a template compiler Tiny, classic programming from the recent scan, syntax analysis, to the semantic analysis, code generation and then, every step of the more perfect!
Update : 2025-02-19 Size : 2.06mb Publisher :
« 12 3 4 5 6 7 8 9 10 ... 47 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.