2021-01-29 15:14:37 -05:00
# include <stdio.h>
/*
Copyright ( c ) 2021 Devine Lu Linvega
Permission to use , copy , modify , and distribute this software for any
purpose with or without fee is hereby granted , provided that the above
copyright notice and this permission notice appear in all copies .
THE SOFTWARE IS PROVIDED " AS IS " AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE .
*/
2021-04-20 17:30:26 -04:00
# define TRIM 0x0100
2021-03-28 14:06:36 -04:00
2021-01-29 15:14:37 -05:00
typedef unsigned char Uint8 ;
2021-02-12 19:18:52 -05:00
typedef signed char Sint8 ;
2021-02-04 15:22:08 -05:00
typedef unsigned short Uint16 ;
2021-01-29 15:14:37 -05:00
2021-03-14 16:30:17 -04:00
typedef struct {
2021-04-20 13:31:50 -04:00
char name [ 64 ] , items [ 64 ] [ 64 ] ;
2021-03-14 17:26:17 -04:00
Uint8 len , refs ;
2021-03-14 16:30:17 -04:00
} Macro ;
2021-03-13 23:51:43 -05:00
typedef struct {
2021-04-20 13:31:50 -04:00
char name [ 64 ] ;
2021-04-20 00:00:14 -04:00
Uint8 refs ;
Uint16 addr ;
2021-01-31 00:31:49 -05:00
} Label ;
2021-03-13 17:55:29 -05:00
typedef struct {
2021-03-14 16:30:17 -04:00
Uint8 data [ 256 * 256 ] , llen , mlen ;
2021-04-20 15:56:43 -04:00
Uint16 ptr , length ;
2021-03-13 17:55:29 -05:00
Label labels [ 256 ] ;
2021-03-14 16:30:17 -04:00
Macro macros [ 256 ] ;
2021-03-13 17:55:29 -05:00
} Program ;
2021-02-23 01:15:02 -05:00
2021-02-07 13:21:41 -05:00
Program p ;
2021-01-30 17:25:48 -05:00
2021-02-01 23:21:27 -05:00
/* clang-format off */
2021-02-06 13:39:13 -05:00
char ops [ ] [ 4 ] = {
2021-04-19 12:51:52 -04:00
" BRK " , " LIT " , " NOP " , " POP " , " DUP " , " SWP " , " OVR " , " ROT " ,
2021-04-21 14:12:42 -04:00
" EQU " , " NEQ " , " GTH " , " LTH " , " GTS " , " LTS " , " DEI " , " DEO " ,
2021-04-21 13:23:58 -04:00
" PEK " , " POK " , " GET " , " PUT " , " JMP " , " JNZ " , " JSR " , " STH " ,
2021-03-21 13:24:44 -04:00
" ADD " , " SUB " , " MUL " , " DIV " , " AND " , " ORA " , " EOR " , " SFT "
2021-02-04 15:22:08 -05:00
} ;
2021-02-01 23:21:27 -05:00
2021-02-23 14:10:49 -05:00
int scin ( char * s , char c ) { int i = 0 ; while ( s [ i ] ) if ( s [ i + + ] = = c ) return i - 1 ; return - 1 ; } /* string char index */
int scmp ( char * a , char * b , int len ) { int i = 0 ; while ( a [ i ] = = b [ i ] & & i < len ) if ( ! a [ i + + ] ) return 1 ; return 0 ; } /* string compare */
2021-04-20 14:32:26 -04:00
int sihx ( char * s ) { int i = 0 ; char c ; while ( ( c = s [ i + + ] ) ) if ( ! ( c > = ' 0 ' & & c < = ' 9 ' ) & & ! ( c > = ' a ' & & c < = ' f ' ) ) return 0 ; return 1 ; } /* string is hexadecimal */
2021-04-22 17:29:48 -04:00
int ssin ( char * s , char * ss ) { int a = 0 , b = 0 ; while ( s [ a ] ) { if ( s [ a ] = = ss [ b ] ) { if ( ! ss [ b + 1 ] ) return a - b ; b + + ; } else b = 0 ; a + + ; } return - 1 ; } /* string substring index */
2021-04-20 14:32:26 -04:00
int shex ( char * s ) { int n = 0 , i = 0 ; char c ; while ( ( c = s [ i + + ] ) ) if ( c > = ' 0 ' & & c < = ' 9 ' ) n = n * 16 + ( c - ' 0 ' ) ; else if ( c > = ' a ' & & c < = ' f ' ) n = n * 16 + 10 + ( c - ' a ' ) ; return n ; } /* string to num */
2021-04-22 17:29:48 -04:00
int slen ( char * s ) { int i = 0 ; while ( s [ i ] & & s [ + + i ] ) ; return i ; } /* string length */
2021-02-07 13:21:41 -05:00
char * scpy ( char * src , char * dst , int len ) { int i = 0 ; while ( ( dst [ i ] = src [ i ] ) & & i < len - 2 ) i + + ; dst [ i + 1 ] = ' \0 ' ; return dst ; } /* string copy */
2021-04-22 17:29:48 -04:00
char * scat ( char * dst , const char * src ) { char * ptr = dst + slen ( dst ) ; while ( * src ) * ptr + + = * src + + ; * ptr = ' \0 ' ; return dst ; } /* string cat */
2021-01-29 16:59:16 -05:00
# pragma mark - Helpers
2021-02-07 13:21:41 -05:00
/* clang-format on */
2021-01-30 17:25:48 -05:00
2021-02-04 15:22:08 -05:00
# pragma mark - I / O
2021-02-01 23:21:27 -05:00
void
2021-02-04 15:22:08 -05:00
pushbyte ( Uint8 b , int lit )
2021-02-01 23:21:27 -05:00
{
2021-04-19 12:51:52 -04:00
if ( lit ) pushbyte ( 0x01 , 0 ) ;
2021-02-04 15:22:08 -05:00
p . data [ p . ptr + + ] = b ;
2021-04-20 15:56:43 -04:00
p . length = p . ptr ;
2021-02-01 23:21:27 -05:00
}
void
2021-02-04 15:22:08 -05:00
pushshort ( Uint16 s , int lit )
2021-02-01 23:21:27 -05:00
{
2021-04-19 12:51:52 -04:00
if ( lit ) pushbyte ( 0x21 , 0 ) ;
2021-02-04 15:22:08 -05:00
pushbyte ( ( s > > 8 ) & 0xff , 0 ) ;
pushbyte ( s & 0xff , 0 ) ;
2021-02-01 23:21:27 -05:00
}
2021-02-23 16:49:36 -05:00
void
2021-04-21 14:12:42 -04:00
pushword ( char * s )
2021-02-23 16:49:36 -05:00
{
int i = 0 ;
char c ;
2021-03-13 17:55:29 -05:00
while ( ( c = s [ i + + ] ) ) pushbyte ( c , 0 ) ;
2021-02-23 16:49:36 -05:00
}
2021-03-14 16:30:17 -04:00
Macro *
findmacro ( char * name )
{
int i ;
for ( i = 0 ; i < p . mlen ; + + i )
if ( scmp ( p . macros [ i ] . name , name , 64 ) )
return & p . macros [ i ] ;
2021-04-22 17:29:48 -04:00
for ( i = 0 ; i < p . mlen ; + + i )
if ( p . macros [ i ] . name [ 0 ] = = ' % ' & & ssin ( name , p . macros [ i ] . name + 1 ) ! = - 1 )
return & p . macros [ i ] ;
2021-03-14 16:30:17 -04:00
return NULL ;
}
2021-01-31 00:31:49 -05:00
Label *
2021-04-20 00:00:14 -04:00
findlabel ( char * name )
2021-01-31 00:31:49 -05:00
{
2021-04-20 00:00:14 -04:00
int i ;
2021-03-13 17:55:29 -05:00
for ( i = 0 ; i < p . llen ; + + i )
if ( scmp ( p . labels [ i ] . name , name , 64 ) )
return & p . labels [ i ] ;
2021-01-31 00:31:49 -05:00
return NULL ;
}
2021-02-06 13:39:13 -05:00
Uint8
2021-02-13 16:21:05 -05:00
findopcode ( char * s )
2021-02-06 13:39:13 -05:00
{
int i ;
2021-02-07 13:21:41 -05:00
for ( i = 0 ; i < 0x20 ; + + i ) {
2021-02-06 13:39:13 -05:00
int m = 0 ;
2021-02-07 13:21:41 -05:00
char * o = ops [ i ] ;
if ( o [ 0 ] ! = s [ 0 ] | | o [ 1 ] ! = s [ 1 ] | | o [ 2 ] ! = s [ 2 ] )
continue ;
2021-02-06 13:39:13 -05:00
while ( s [ 3 + m ] ) {
2021-03-27 14:04:05 -04:00
if ( s [ 3 + m ] = = ' 2 ' )
i | = ( 1 < < 5 ) ; /* mode: short */
else if ( s [ 3 + m ] = = ' r ' )
i | = ( 1 < < 6 ) ; /* mode: return */
else
return 0 ; /* failed to match */
2021-02-06 13:39:13 -05:00
m + + ;
}
return i ;
}
return 0 ;
}
2021-04-22 17:29:48 -04:00
char * template ( char * src , char * dst , char * w , Macro * m )
{
char input [ 64 ] ;
if ( scin ( src , ' % ' ) = = - 1 )
return src ;
scpy ( w , input , ssin ( w , m - > name + 1 ) + 1 ) ;
scpy ( src , dst , scin ( src , ' % ' ) + 1 ) ;
scat ( dst , input ) ;
scat ( dst , src + scin ( src , ' % ' ) + 1 ) ;
return dst ;
}
2021-03-11 18:47:28 -05:00
char *
sublabel ( char * src , char * scope , char * name )
{
scpy ( scope , src , 64 ) ;
2021-04-19 20:23:30 -04:00
scpy ( " / " , src + slen ( src ) , 64 ) ;
2021-03-11 18:47:28 -05:00
scpy ( name , src + slen ( src ) , 64 ) ;
return src ;
}
2021-02-04 15:22:08 -05:00
# pragma mark - Parser
2021-01-31 00:31:49 -05:00
2021-01-30 17:25:48 -05:00
int
2021-02-04 15:22:08 -05:00
error ( char * name , char * id )
2021-01-30 17:25:48 -05:00
{
2021-02-05 23:18:30 -05:00
printf ( " Error: %s[%s] \n " , name , id ) ;
2021-02-04 16:49:03 -05:00
return 0 ;
}
2021-03-14 16:30:17 -04:00
int
makemacro ( char * name , FILE * f )
{
Macro * m ;
char word [ 64 ] ;
if ( findmacro ( name ) )
return error ( " Macro duplicate " , name ) ;
if ( sihx ( name ) & & slen ( name ) % 2 = = 0 )
return error ( " Macro name is hex number " , name ) ;
if ( findopcode ( name ) )
return error ( " Macro name is invalid " , name ) ;
m = & p . macros [ p . mlen + + ] ;
scpy ( name , m - > name , 64 ) ;
while ( fscanf ( f , " %s " , word ) ) {
if ( word [ 0 ] = = ' { ' ) continue ;
if ( word [ 0 ] = = ' } ' ) break ;
2021-04-20 13:31:50 -04:00
if ( m - > len > 64 )
2021-04-15 13:19:59 -04:00
return error ( " Macro too large " , name ) ;
2021-04-20 13:31:50 -04:00
if ( slen ( word ) > = 64 )
2021-04-15 13:19:59 -04:00
return error ( " Word too long " , name ) ;
2021-03-14 16:30:17 -04:00
scpy ( word , m - > items [ m - > len + + ] , 64 ) ;
}
2021-04-20 00:00:14 -04:00
printf ( " New macro: %s, %d items \n " , m - > name , m - > len ) ;
2021-03-14 16:30:17 -04:00
return 1 ;
}
2021-02-23 01:15:02 -05:00
int
2021-03-13 20:34:08 -05:00
makelabel ( char * name , Uint16 addr )
2021-02-04 16:49:03 -05:00
{
Label * l ;
2021-02-07 13:21:41 -05:00
if ( findlabel ( name ) )
return error ( " Label duplicate " , name ) ;
2021-03-11 15:19:59 -05:00
if ( sihx ( name ) & & slen ( name ) % 2 = = 0 )
2021-02-12 19:18:52 -05:00
return error ( " Label name is hex number " , name ) ;
2021-02-13 16:21:05 -05:00
if ( findopcode ( name ) )
2021-02-13 11:38:23 -05:00
return error ( " Label name is invalid " , name ) ;
2021-03-13 17:55:29 -05:00
l = & p . labels [ p . llen + + ] ;
2021-02-04 16:49:03 -05:00
l - > addr = addr ;
2021-03-01 12:16:40 -05:00
l - > refs = 0 ;
2021-02-07 13:21:41 -05:00
scpy ( name , l - > name , 64 ) ;
2021-03-13 23:51:43 -05:00
printf ( " New label: %s, at 0x%04x \n " , l - > name , l - > addr ) ;
2021-02-04 16:49:03 -05:00
return 1 ;
}
2021-02-13 19:37:03 -05:00
int
2021-02-23 01:15:02 -05:00
skipblock ( char * w , int * cap , char a , char b )
2021-02-15 17:04:58 -05:00
{
2021-02-23 01:15:02 -05:00
if ( w [ 0 ] = = b ) {
2021-02-15 17:04:58 -05:00
* cap = 0 ;
return 1 ;
}
2021-02-23 01:15:02 -05:00
if ( w [ 0 ] = = a ) * cap = 1 ;
2021-02-15 17:04:58 -05:00
if ( * cap ) return 1 ;
return 0 ;
}
2021-03-14 16:30:17 -04:00
int
walktoken ( char * w )
{
Macro * m ;
if ( findopcode ( w ) | | scmp ( w , " BRK " , 4 ) )
return 1 ;
switch ( w [ 0 ] ) {
2021-04-20 13:31:50 -04:00
case ' [ ' : return 0 ;
case ' ] ' : return 0 ;
2021-04-21 14:12:42 -04:00
case ' \' ' : return 1 ;
2021-04-20 00:33:52 -04:00
case ' . ' : return 2 ; /* zero-page: LIT addr-lb */
2021-04-20 13:31:50 -04:00
case ' , ' : return 2 ; /* relative: LIT addr-rel */
2021-04-20 16:05:34 -04:00
case ' : ' : return 2 ; /* absolute: addr-hb addr-lb */
2021-04-20 13:31:50 -04:00
case ' ; ' : return 3 ; /* absolute: LIT addr-hb addr-lb */
case ' $ ' : return shex ( w + 1 ) ;
case ' # ' : return slen ( w + 1 ) = = 4 ? 3 : 2 ;
2021-04-21 14:12:42 -04:00
case ' " ' : return slen ( w + 1 ) ;
2021-03-14 16:30:17 -04:00
}
2021-03-14 16:47:09 -04:00
if ( ( m = findmacro ( w ) ) ) {
int i , res = 0 ;
2021-04-22 17:29:48 -04:00
char templated [ 64 ] ;
2021-03-14 16:47:09 -04:00
for ( i = 0 ; i < m - > len ; + + i )
2021-04-22 17:29:48 -04:00
res + = walktoken ( template ( m - > items [ i ] , templated , w , m ) ) ;
2021-03-14 16:47:09 -04:00
return res ;
}
2021-03-14 16:30:17 -04:00
return error ( " Unknown label in first pass " , w ) ;
}
int
parsetoken ( char * w )
{
Label * l ;
Macro * m ;
2021-04-20 00:33:52 -04:00
if ( w [ 0 ] = = ' . ' & & ( l = findlabel ( w + 1 ) ) ) { /* zero-page */
2021-04-21 16:01:50 -04:00
if ( l - > addr > 0xff )
return error ( " Address is not in zero page " , w ) ;
2021-04-20 00:33:52 -04:00
pushbyte ( l - > addr , 1 ) ;
2021-04-19 12:29:39 -04:00
return + + l - > refs ;
2021-03-14 16:47:09 -04:00
} else if ( w [ 0 ] = = ' , ' & & ( l = findlabel ( w + 1 ) ) ) {
2021-04-20 00:33:52 -04:00
int off = l - > addr - p . ptr - 3 ;
if ( off < - 126 | | off > 126 )
return error ( " Address is too far " , w ) ;
pushbyte ( ( Sint8 ) off , 1 ) ;
return + + l - > refs ;
2021-04-20 16:05:34 -04:00
} else if ( w [ 0 ] = = ' : ' & & ( l = findlabel ( w + 1 ) ) ) { /* absolute */
pushshort ( l - > addr , 0 ) ;
return + + l - > refs ;
2021-04-20 00:33:52 -04:00
} else if ( w [ 0 ] = = ' ; ' & & ( l = findlabel ( w + 1 ) ) ) { /* absolute */
2021-04-20 00:00:14 -04:00
pushshort ( l - > addr , 1 ) ;
2021-04-19 12:29:39 -04:00
return + + l - > refs ;
2021-04-20 13:31:50 -04:00
} else if ( findopcode ( w ) | | scmp ( w , " BRK " , 4 ) ) {
pushbyte ( findopcode ( w ) , 0 ) ;
2021-03-14 16:30:17 -04:00
return 1 ;
2021-04-21 14:12:42 -04:00
} else if ( w [ 0 ] = = ' " ' ) {
pushword ( w + 1 ) ;
return 1 ;
} else if ( w [ 0 ] = = ' \' ' ) {
pushbyte ( ( Uint8 ) w [ 1 ] , 0 ) ;
return 1 ;
2021-04-13 00:16:31 -04:00
} else if ( w [ 0 ] = = ' # ' ) {
if ( slen ( w + 1 ) = = 1 )
pushbyte ( ( Uint8 ) w [ 1 ] , 1 ) ;
if ( sihx ( w + 1 ) & & slen ( w + 1 ) = = 2 )
2021-03-14 16:30:17 -04:00
pushbyte ( shex ( w + 1 ) , 1 ) ;
2021-04-13 00:16:31 -04:00
else if ( sihx ( w + 1 ) & & slen ( w + 1 ) = = 4 )
2021-03-14 16:30:17 -04:00
pushshort ( shex ( w + 1 ) , 1 ) ;
else
return 0 ;
return 1 ;
2021-03-14 16:47:09 -04:00
} else if ( ( m = findmacro ( w ) ) ) {
int i ;
2021-04-22 17:29:48 -04:00
for ( i = 0 ; i < m - > len ; + + i ) {
char templated [ 64 ] ;
if ( ! parsetoken ( template ( m - > items [ i ] , templated , w , m ) ) )
2021-03-14 16:30:17 -04:00
return 0 ;
2021-04-22 17:29:48 -04:00
}
return + + m - > refs ;
2021-04-20 13:31:50 -04:00
} else if ( sihx ( w ) ) {
if ( slen ( w ) = = 2 )
pushbyte ( shex ( w ) , 0 ) ;
else if ( slen ( w ) = = 4 )
pushshort ( shex ( w ) , 0 ) ;
return 1 ;
2021-03-14 16:30:17 -04:00
}
return 0 ;
}
2021-02-04 00:53:56 -05:00
int
2021-01-29 15:14:37 -05:00
pass1 ( FILE * f )
{
2021-04-20 13:31:50 -04:00
int ccmnt = 0 ;
2021-02-04 18:23:04 -05:00
Uint16 addr = 0 ;
2021-03-11 18:47:28 -05:00
char w [ 64 ] , scope [ 64 ] , subw [ 64 ] ;
2021-02-23 14:10:49 -05:00
printf ( " Pass 1 \n " ) ;
2021-02-04 15:22:08 -05:00
while ( fscanf ( f , " %s " , w ) = = 1 ) {
2021-02-23 01:15:02 -05:00
if ( skipblock ( w , & ccmnt , ' ( ' , ' ) ' ) ) continue ;
2021-04-20 13:31:50 -04:00
if ( w [ 0 ] = = ' | ' ) {
addr = shex ( w + 1 ) ;
2021-03-14 16:30:17 -04:00
} else if ( w [ 0 ] = = ' % ' ) {
if ( ! makemacro ( w + 1 , f ) )
return error ( " Pass1 failed " , w ) ;
2021-02-23 16:49:36 -05:00
} else if ( w [ 0 ] = = ' @ ' ) {
2021-03-13 20:34:08 -05:00
if ( ! makelabel ( w + 1 , addr ) )
2021-02-10 19:41:16 -05:00
return error ( " Pass1 failed " , w ) ;
2021-03-11 18:47:28 -05:00
scpy ( w + 1 , scope , 64 ) ;
2021-04-20 13:31:50 -04:00
} else if ( w [ 0 ] = = ' & ' ) {
if ( ! makelabel ( sublabel ( subw , scope , w + 1 ) , addr ) )
return error ( " Pass1 failed " , w ) ;
} else if ( sihx ( w ) )
addr + = slen ( w ) / 2 ;
2021-04-20 00:33:52 -04:00
else
2021-03-14 16:30:17 -04:00
addr + = walktoken ( w ) ;
2021-01-30 17:25:48 -05:00
}
rewind ( f ) ;
2021-02-04 15:22:08 -05:00
return 1 ;
2021-01-30 17:25:48 -05:00
}
2021-02-04 15:22:08 -05:00
int
2021-01-30 17:25:48 -05:00
pass2 ( FILE * f )
{
2021-04-20 13:31:50 -04:00
int ccmnt = 0 , ctemplate = 0 ;
2021-03-11 18:47:28 -05:00
char w [ 64 ] , scope [ 64 ] , subw [ 64 ] ;
2021-02-23 14:10:49 -05:00
printf ( " Pass 2 \n " ) ;
2021-02-04 15:22:08 -05:00
while ( fscanf ( f , " %s " , w ) = = 1 ) {
2021-03-14 16:30:17 -04:00
if ( w [ 0 ] = = ' % ' ) continue ;
2021-04-19 20:23:30 -04:00
if ( w [ 0 ] = = ' & ' ) continue ;
2021-04-20 13:31:50 -04:00
if ( w [ 0 ] = = ' [ ' ) continue ;
if ( w [ 0 ] = = ' ] ' ) continue ;
2021-03-13 17:55:29 -05:00
if ( skipblock ( w , & ccmnt , ' ( ' , ' ) ' ) ) continue ;
if ( skipblock ( w , & ctemplate , ' { ' , ' } ' ) ) continue ;
2021-03-14 16:30:17 -04:00
if ( w [ 0 ] = = ' | ' ) {
2021-04-21 08:45:17 -04:00
if ( p . length & & shex ( w + 1 ) < p . ptr )
return error ( " Memory Overwrite " , w ) ;
2021-03-14 16:30:17 -04:00
p . ptr = shex ( w + 1 ) ;
continue ;
2021-04-20 13:31:50 -04:00
} else if ( w [ 0 ] = = ' $ ' ) {
2021-04-20 00:33:52 -04:00
p . ptr + = shex ( w + 1 ) ;
continue ;
2021-04-20 13:31:50 -04:00
} else if ( w [ 0 ] = = ' @ ' ) {
2021-03-11 18:47:28 -05:00
scpy ( w + 1 , scope , 64 ) ;
continue ;
}
2021-04-20 00:00:14 -04:00
if ( w [ 1 ] = = ' & ' )
2021-03-14 16:30:17 -04:00
scpy ( sublabel ( subw , scope , w + 2 ) , w + 1 , 64 ) ;
2021-04-20 13:31:50 -04:00
if ( ! parsetoken ( w ) )
2021-03-14 16:30:17 -04:00
return error ( " Unknown label in second pass " , w ) ;
2021-01-29 15:14:37 -05:00
}
2021-02-04 15:22:08 -05:00
return 1 ;
2021-01-29 15:14:37 -05:00
}
2021-03-01 12:16:40 -05:00
void
2021-03-13 20:34:08 -05:00
cleanup ( char * filename )
2021-03-01 12:16:40 -05:00
{
int i ;
2021-04-20 15:56:43 -04:00
printf ( " Assembled %s(%d bytes), %d labels, %d macros. \n \n " , filename , ( p . length - TRIM ) , p . llen , p . mlen ) ;
2021-03-13 17:55:29 -05:00
for ( i = 0 ; i < p . llen ; + + i )
2021-04-22 22:57:47 -04:00
if ( p . labels [ i ] . name [ 0 ] > = ' A ' & & p . labels [ i ] . name [ 0 ] < = ' Z ' )
continue ; /* Ignore capitalized labels(devices) */
else if ( ! p . labels [ i ] . refs & & scin ( p . labels [ i ] . name , ' / ' ) > 0 )
2021-03-13 17:55:29 -05:00
printf ( " --- Unused label: %s \n " , p . labels [ i ] . name ) ;
2021-03-14 17:26:17 -04:00
for ( i = 0 ; i < p . mlen ; + + i )
if ( ! p . macros [ i ] . refs )
printf ( " --- Unused macro: %s \n " , p . macros [ i ] . name ) ;
2021-03-01 12:16:40 -05:00
}
2021-01-29 15:14:37 -05:00
int
main ( int argc , char * argv [ ] )
{
FILE * f ;
2021-04-19 12:29:39 -04:00
if ( argc < 3 )
return ! error ( " Input " , " Missing " ) ;
if ( ! ( f = fopen ( argv [ 1 ] , " r " ) ) )
return ! error ( " Open " , " Failed " ) ;
if ( ! pass1 ( f ) | | ! pass2 ( f ) )
return ! error ( " Assembly " , " Failed " ) ;
2021-04-20 15:56:43 -04:00
fwrite ( p . data + TRIM , p . length - TRIM , 1 , fopen ( argv [ 2 ] , " wb " ) ) ;
2021-01-29 16:59:16 -05:00
fclose ( f ) ;
2021-03-13 20:34:08 -05:00
cleanup ( argv [ 2 ] ) ;
2021-01-29 15:14:37 -05:00
return 0 ;
}