home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / language / sozosun / jas.dif < prev    next >
Encoding:
Text File  |  1993-10-23  |  2.4 KB  |  136 lines

  1. Only in jas: Makefile
  2. diff ../stsrc/jas/hdr.c jas/hdr.c
  3. 20c20
  4. <     int magic;
  5. ---
  6. >     unsigned short magic;
  7. 27c27
  8. <     int rlbflg;
  9. ---
  10. >     short rlbflg;
  11. diff ../stsrc/jas/jas.h jas/jas.h
  12. 18a19
  13. > #ifndef BSD
  14. 19a21
  15. > #endif
  16. Only in ../stsrc/jas: jas.lzh
  17. diff ../stsrc/jas/main.c jas/main.c
  18. 11a12,14
  19. >  *
  20. >  * MODIFIED:
  21. >  *     10/1990   K. Dalton   - added ifdefs for BSD Unix port
  22. 20a24
  23. > #include <stdio.h>
  24. 51a56,59
  25. > #ifdef BSD
  26. >     if ( freopen( ofile, "wb", stdout ) == (FILE *) NULL )
  27. >         error( 0, "can't open object file for writing" );
  28. > #else
  29. 53a62
  30. > #endif
  31. 106c115
  32. <         fprintf( stderr, "Sozobon Assembler, Version %d.%d\n",
  33. ---
  34. >         fprintf( stderr, "jas: Sozobon Assembler, Version %d.%d\n",
  35. 108c117,120
  36. <         fprintf( stderr, "Copyright (c) 1988 by Sozobon, Limited\n" );
  37. ---
  38. > #ifdef BSD
  39. >                 fprintf( stderr, "jas: BSD UNIX port 0.01 Kent Dalton 10/1990\n");
  40. > #endif
  41. >         fprintf( stderr, "jas: Copyright (c) 1988 by Sozobon, Limited\n" );
  42. 115c127
  43. <         fprintf( stderr, "usage: as [-N] source [-o object]\n" );
  44. ---
  45. >         fprintf( stderr, "jas: usage: as [-N] source [-o object]\n" );
  46. 131c143
  47. <             fprintf(stderr, "usage: as [-N] source [-o object]\n" );
  48. ---
  49. >             fprintf(stderr, "jas: usage: as [-N] source [-o object]\n" );
  50. Only in ../stsrc/jas: makefile
  51. diff ../stsrc/jas/ops.c jas/ops.c
  52. 33a34
  53. >     int icmpare();
  54. diff ../stsrc/jas/parse.c jas/parse.c
  55. 41c41
  56. < yyparse()
  57. ---
  58. > int yyparse()
  59. 42a43,45
  60. >         
  61. >         int Yline();
  62. 51c54
  63. < Yline()
  64. ---
  65. > int Yline()
  66. 52a56,60
  67. >         
  68. >         int Ylabel_list();
  69. >         int Ystatement();
  70. >         int Yerror();
  71. 77c85
  72. < Ylabel_list()
  73. ---
  74. > int Ylabel_list()
  75. 78a87,89
  76. >         
  77. >         int Yerror();
  78. >         
  79. 105c116
  80. < Ystatement()
  81. ---
  82. > int Ystatement()
  83. 106a118,119
  84. >         int Yinstruction();
  85. 113c126
  86. < Yinstruction()
  87. ---
  88. > int Yinstruction()
  89. 121a135,136
  90. >         
  91. >         int Yerror();
  92. 122a138
  93. 242a259,260
  94. >         int Yerror();
  95. >         
  96. 268a287,288
  97. >         int Yerror();
  98. >         
  99. 490a511
  100. >         int Yerror();
  101. 507a529
  102. >       int Yerror();
  103. 524a547
  104. >         int Yerror();
  105. 525a549
  106. 542a567
  107. >         int Yerror();
  108. 564a590
  109. >         int Yerror();
  110. 592a619
  111. >         int Yerror();
  112. 620a648
  113. >         int Yerror();
  114. 691c719
  115. < Yerror( s )
  116. ---
  117. > int Yerror( s )
  118. diff ../stsrc/jas/parse.h jas/parse.h
  119. 20c20
  120. <     EXPR  expr;
  121. ---
  122. >         EXPR  expr;
  123. diff ../stsrc/jas/scan.c jas/scan.c
  124. 15d14
  125. < #include "scan.h"
  126. 16a16
  127. > #include "scan.h"
  128. diff ../stsrc/jas/sym.c jas/sym.c
  129. 57a58
  130. >     int hash();
  131.