mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-13 15:27:18 +00:00
First changes in 0.5wip: correct some grammar (it's vs. its).
This commit is contained in:
parent
2a14ffe251
commit
a685d341c5
3
CHANGES
3
CHANGES
@ -1,3 +1,6 @@
|
||||
??.??.201?: Rhialto
|
||||
version 0.5:
|
||||
|
||||
09.11.2015: Rhialto
|
||||
version 0.4:
|
||||
- Fixed various bugs. The most notable was extensive use-
|
||||
|
||||
1
TODO
1
TODO
@ -1,3 +1,4 @@
|
||||
.packed pdf page 80
|
||||
|
||||
listing format errors: ignore whitespace of input
|
||||
|
||||
|
||||
@ -553,7 +553,7 @@ int eval_undefined(
|
||||
}
|
||||
|
||||
/* push_cond - a new conditional (.IF) block has been activated. Push
|
||||
it's context. */
|
||||
its context. */
|
||||
|
||||
void push_cond(
|
||||
int ok,
|
||||
@ -731,7 +731,7 @@ void write_globals(
|
||||
if (ident)
|
||||
gsd_ident(&gsd, ident);
|
||||
|
||||
/* write out each PSECT with it's global stuff */
|
||||
/* write out each PSECT with its global stuff */
|
||||
/* Sections must be written out in the order that they
|
||||
appear in the assembly file. */
|
||||
for (isect = 0; isect < sector; isect++) {
|
||||
|
||||
@ -59,7 +59,7 @@ EX_TREE *xfer_address = NULL; /* The transfer address */
|
||||
SYMBOL *current_pc; /* The current program counter */
|
||||
|
||||
unsigned last_dot_addr; /* Last coded PC... */
|
||||
SECTION *last_dot_section; /* ...and it's program section */
|
||||
SECTION *last_dot_section; /* ...and its program section */
|
||||
|
||||
/* The following are dummy psects for symbols which have meaning to
|
||||
the assembler: */
|
||||
|
||||
@ -67,7 +67,7 @@ extern EX_TREE *xfer_address; /* The transfer address */
|
||||
extern SYMBOL *current_pc; /* The current program counter */
|
||||
|
||||
extern unsigned last_dot_addr; /* Last coded PC... */
|
||||
extern SECTION *last_dot_section; /* ...and it's program section */
|
||||
extern SECTION *last_dot_section; /* ...and its program section */
|
||||
|
||||
/* The following are dummy psects for symbols which have meaning to
|
||||
the assembler: */
|
||||
|
||||
@ -3,12 +3,12 @@
|
||||
|
||||
#include "git-info.h"
|
||||
|
||||
#define BASE_VERSION "0.4"
|
||||
#define BASE_VERSION "0.5wip"
|
||||
|
||||
#if defined(GIT_VERSION)
|
||||
#define VERSIONSTR BASE_VERSION" ("GIT_VERSION"\n\t"GIT_AUTHOR_DATE")"
|
||||
#else
|
||||
#define VERSIONSTR BASE_VERSION" (21 June 2015)"
|
||||
#define VERSIONSTR BASE_VERSION" (xx xxxx 2016)"
|
||||
/*#define VERSIONSTR "0.3 (April 21, 2009)" */
|
||||
/*#define VERSIONSTR "0.2 July 15, 2001" */
|
||||
#endif
|
||||
|
||||
2
macros.c
2
macros.c
@ -591,7 +591,7 @@ MACRO *new_macro(
|
||||
return mac;
|
||||
}
|
||||
|
||||
/* free a macro, it's args, it's text, etc. */
|
||||
/* free a macro, its args, its text, etc. */
|
||||
void free_macro(
|
||||
MACRO *mac)
|
||||
{
|
||||
|
||||
2
mlb.c
2
mlb.c
@ -278,7 +278,7 @@ BUFFER *mlb_entry(
|
||||
return buf;
|
||||
}
|
||||
|
||||
/* mlb_extract - walk thru a macro library and store it's contents
|
||||
/* mlb_extract - walk thru a macro library and store its contents
|
||||
into files in the current directory.
|
||||
|
||||
See, I had decided not to bother writing macro library maintenance
|
||||
|
||||
2
object.c
2
object.c
@ -786,7 +786,7 @@ void text_complex_begin(
|
||||
}
|
||||
|
||||
/* text_complex_fit checks if a complex expression will fit and
|
||||
returns a pointer to it's location */
|
||||
returns a pointer to its location */
|
||||
|
||||
static char *text_complex_fit(
|
||||
TEXT_COMPLEX *tx,
|
||||
|
||||
@ -29,7 +29,7 @@ typedef struct rept_stream {
|
||||
|
||||
/* rept_stream_gets gets a line from a repeat stream. At the end of
|
||||
each count, the coutdown is decreated and the stream is reset to
|
||||
it's beginning. */
|
||||
its beginning. */
|
||||
|
||||
char *rept_stream_gets(
|
||||
STREAM *str)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user