-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsubs.c
executable file
·162 lines (133 loc) · 2.83 KB
/
subs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*******************************************************
*
* a56 - a DSP56001 assembler
*
* Written by Quinn C. Jensen
* July 1990
*
*******************************************************\
/*
* Copyright (C) 1990-1994 Quinn C. Jensen
*
* Permission to use, copy, modify, distribute, and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation. The author makes no representations
* about the suitability of this software for any purpose. It is
* provided "as is" without express or implied warranty.
*
*/
static char *Copyright = "Copyright (C) 1990-1994 Quinn C. Jensen";
/*
* subs.c - Some subroutines for the assembler.
*
*/
#include "a56.h"
#define MAX 1024
FILE *open_read(file)
char *file;
{
FILE *fp;
if(strcmp(file, "-") == 0)
fp = stdin;
else if ((fp = fopen(file, "r")) == NULL) {
perror(file);
exit(1);
}
return fp;
}
FILE *open_write(file)
char *file;
{
FILE *fp;
if ((fp = fopen(file, "w")) == NULL) {
perror(file);
exit(1);
}
return fp;
}
FILE *open_append(file)
char *file;
{
FILE *fp;
if ((fp = fopen(file, "a")) == NULL) {
perror(file);
exit(1);
}
return fp;
}
fatal(c, a1, a2, a3, a4, a5, a6, a7, a8)
char *c, *a1, *a2, *a3, *a4, *a5, *a6, *a7, *a8;
{
fprintf(stderr, c, a1, a2, a3, a4, a5, a6, a7, a8);
exit(1);
}
#define TABS 8
#define MAX_BUF 256
char tabbuf[MAX_BUF], *untabn();
char *untab(s) /* expand tabs in s */
register char *s;
{
return untabn(s, TABS);
}
char *untabn(s, stops) /* expand tabs in s */
register char *s;
register int stops;
{
char *o = s;
/* copy input string into buffer to scan while input string is modified */
register char *b = tabbuf;
strncpy(b, s, MAX_BUF);
/* iterate until the copy of the input string is depleted */
while(*b) {
if(*b == '\t') {
do
*s = ' ';
while ((++s - o) % stops);
} else {
*s = *b; s++;
}
b++;
}
/* null terminate the resultant string */
*s = '\0';
return o;
}
char *alloc(int size)
{
char *p = (char *)malloc(size);
if(NOT p)
fatal("alloc: insufficient virtual memory to allocate %d bytes\n",
size);
return p;
}
#define ascii2n(c) \
((c) >= 'a' ? (c) - 'a' + 10 : ((c) >= 'A' ? (c) - 'A' + 10 : (c) - '0'))
#define valid(c) ((c) >= '0' && (c) <= '9' || \
(c) >= 'A' && (c) <= 'Z' || \
(c) >= 'a' && (c) <= 'z')
strtol(s, p, base)
register char *s, **p;
register int base;
{
register long result = 0;
register int sign = 0;
while(*s == ' ' || *s == '\t')
s++;
if(*s == '-') {
s++;
sign++;
}
while(valid(*s)) {
register int dig = ascii2n(*s);
if(dig >= base)
break;
result *= base;
result += dig;
s++;
}
if(p)
*p = s;
return sign ? -result : result;
}