17 lines
719 B
C
17 lines
719 B
C
|
|
/***************************************************************************
|
||
|
|
* file name : asm_parser.c *
|
||
|
|
* author : *
|
||
|
|
* description : the functions are declared in asm_parser.h *
|
||
|
|
* The intention of this library is to parse a .ASM file *
|
||
|
|
* *
|
||
|
|
* *
|
||
|
|
***************************************************************************
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <string.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include "asm_parser.h"
|
||
|
|
|
||
|
|
/* to do - implement all the functions in asm_parser.h */
|