加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
assembler.h 800 Bytes
一键复制 编辑 原始数据 按行查看 历史
szx 提交于 2017-12-12 16:51 . step4: test call and ret
#ifndef _ASSEMBLER_H_
#define _ASSEMBLER_H_
void add_reg(char *); // input register's name, add register's id to STRUCT statement
void add_instr(char *); // input instruction's name, add instruction's value to STRUCT statement
void add_letter(char *);// input letter, add letter's value to STRUCT statement
void add_hex(char *); // input hexadecimal, add it to STRUCT statement
void add_dec(char *); // input decimal, add it to STRUCT statement
void add_addr(char *); // input string(which mush be label_table[].name), add label_table[].addr to STRUCT statement
void add_label(char *); // store label's name and address to STRUCT label_table[]
void add_stmt(void); // write STRUCT statement to output file
int atoih(char *); // translate sting of hex formation to integer
#endif /* _ASSEMBLER_H_*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化