home *** CD-ROM | disk | FTP | other *** search
- Only in jas: Makefile
- diff ../stsrc/jas/hdr.c jas/hdr.c
- 20c20
- < int magic;
- ---
- > unsigned short magic;
- 27c27
- < int rlbflg;
- ---
- > short rlbflg;
- diff ../stsrc/jas/jas.h jas/jas.h
- 18a19
- > #ifndef BSD
- 19a21
- > #endif
- Only in ../stsrc/jas: jas.lzh
- diff ../stsrc/jas/main.c jas/main.c
- 11a12,14
- > *
- > * MODIFIED:
- > * 10/1990 K. Dalton - added ifdefs for BSD Unix port
- 20a24
- > #include <stdio.h>
- 51a56,59
- > #ifdef BSD
- > if ( freopen( ofile, "wb", stdout ) == (FILE *) NULL )
- > error( 0, "can't open object file for writing" );
- > #else
- 53a62
- > #endif
- 106c115
- < fprintf( stderr, "Sozobon Assembler, Version %d.%d\n",
- ---
- > fprintf( stderr, "jas: Sozobon Assembler, Version %d.%d\n",
- 108c117,120
- < fprintf( stderr, "Copyright (c) 1988 by Sozobon, Limited\n" );
- ---
- > #ifdef BSD
- > fprintf( stderr, "jas: BSD UNIX port 0.01 Kent Dalton 10/1990\n");
- > #endif
- > fprintf( stderr, "jas: Copyright (c) 1988 by Sozobon, Limited\n" );
- 115c127
- < fprintf( stderr, "usage: as [-N] source [-o object]\n" );
- ---
- > fprintf( stderr, "jas: usage: as [-N] source [-o object]\n" );
- 131c143
- < fprintf(stderr, "usage: as [-N] source [-o object]\n" );
- ---
- > fprintf(stderr, "jas: usage: as [-N] source [-o object]\n" );
- Only in ../stsrc/jas: makefile
- diff ../stsrc/jas/ops.c jas/ops.c
- 33a34
- > int icmpare();
- diff ../stsrc/jas/parse.c jas/parse.c
- 41c41
- < yyparse()
- ---
- > int yyparse()
- 42a43,45
- >
- > int Yline();
- >
- 51c54
- < Yline()
- ---
- > int Yline()
- 52a56,60
- >
- > int Ylabel_list();
- > int Ystatement();
- > int Yerror();
- >
- 77c85
- < Ylabel_list()
- ---
- > int Ylabel_list()
- 78a87,89
- >
- > int Yerror();
- >
- 105c116
- < Ystatement()
- ---
- > int Ystatement()
- 106a118,119
- > int Yinstruction();
- >
- 113c126
- < Yinstruction()
- ---
- > int Yinstruction()
- 121a135,136
- >
- > int Yerror();
- 122a138
- >
- 242a259,260
- > int Yerror();
- >
- 268a287,288
- > int Yerror();
- >
- 490a511
- > int Yerror();
- 507a529
- > int Yerror();
- 524a547
- > int Yerror();
- 525a549
- >
- 542a567
- > int Yerror();
- 564a590
- > int Yerror();
- 592a619
- > int Yerror();
- 620a648
- > int Yerror();
- 691c719
- < Yerror( s )
- ---
- > int Yerror( s )
- diff ../stsrc/jas/parse.h jas/parse.h
- 20c20
- < EXPR expr;
- ---
- > EXPR expr;
- diff ../stsrc/jas/scan.c jas/scan.c
- 15d14
- < #include "scan.h"
- 16a16
- > #include "scan.h"
- diff ../stsrc/jas/sym.c jas/sym.c
- 57a58
- > int hash();
-