diff --git a/CHANGES b/CHANGES index 1f24aed..e66dc9c 100644 --- a/CHANGES +++ b/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- diff --git a/TODO b/TODO index 9cf9f53..9a514ec 100644 --- a/TODO +++ b/TODO @@ -1,3 +1,4 @@ + .packed pdf page 80 listing format errors: ignore whitespace of input diff --git a/assemble_aux.c b/assemble_aux.c index a5b7180..c6dbfbc 100644 --- a/assemble_aux.c +++ b/assemble_aux.c @@ -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++) { diff --git a/assemble_globals.c b/assemble_globals.c index 40742b3..c4ad063 100644 --- a/assemble_globals.c +++ b/assemble_globals.c @@ -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: */ diff --git a/assemble_globals.h b/assemble_globals.h index ea5ff01..5054d38 100644 --- a/assemble_globals.h +++ b/assemble_globals.h @@ -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: */ diff --git a/macro11.h b/macro11.h index d8cc5ba..043547a 100644 --- a/macro11.h +++ b/macro11.h @@ -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 diff --git a/macros.c b/macros.c index c1f4490..5dbc810 100644 --- a/macros.c +++ b/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) { diff --git a/mlb.c b/mlb.c index 8ec62c3..b5c7d8b 100644 --- a/mlb.c +++ b/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 diff --git a/object.c b/object.c index 997cf26..061117c 100644 --- a/object.c +++ b/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, diff --git a/rept_irpc.c b/rept_irpc.c index 5ba5fb4..419b816 100644 --- a/rept_irpc.c +++ b/rept_irpc.c @@ -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) diff --git a/symbols.c b/symbols.c index 50d1c91..63693ca 100644 --- a/symbols.c +++ b/symbols.c @@ -97,7 +97,7 @@ void free_sym( free(sym); } -/* remove_sym removes a symbol from it's symbol table. */ +/* remove_sym removes a symbol from its symbol table. */ void remove_sym( SYMBOL *sym,