diff --git a/src/pseudo.c b/src/pseudo.c index 29b98e4..b496edd 100644 --- a/src/pseudo.c +++ b/src/pseudo.c @@ -8,7 +8,7 @@ * * Handle directives and pseudo-ops. * - * Version: @(#)pseudo.c 1.0.12 2023/09/28 + * Version: @(#)pseudo.c 1.0.13 2026/07/01 * * Authors: Fred N. van Kempen, * Bernd B”ckmann, @@ -418,6 +418,9 @@ do_echo(char **p, int pass) next = 0; skip_white(p); + if (IS_EOL(**p)) + break; + if (**p == '"') { string_lit(p, temp, STR_LEN, 1); printf("%s", temp); diff --git a/src/targets/ins8060.c b/src/targets/ins8060.c index a54d626..6dd42cb 100644 --- a/src/targets/ins8060.c +++ b/src/targets/ins8060.c @@ -21,11 +21,11 @@ * less power. Other than instruction timings, everything else * was the same, so for code, nothing changed. * - * Version: @(#)ins8060.c 1.0.2 2023/09/06 + * Version: @(#)ins8060.c 1.0.3 2026/07/01 * * Author: Fred N. van Kempen, * - * Copyright 2023 Fred N. van Kempen. + * Copyright 2023-2026 Fred N. van Kempen. * * Redistribution and use in source and binary forms, with * or without modification, are permitted provided that the @@ -67,8 +67,8 @@ #include "../target.h" -#define USE_JS 1 // include "JS" pseudo -#define USE_LDPI 1 // include "LDPI" pseudo +#define USE_JS 0 // include "JS" pseudo +#define USE_LDPI 0 // include "LDPI" pseudo typedef enum { diff --git a/src/version.h b/src/version.h index b654f7d..4cf430c 100644 --- a/src/version.h +++ b/src/version.h @@ -8,7 +8,7 @@ * * Define application version and build info. * - * Version: @(#)version.h 1.0.14 2026/06/29 + * Version: @(#)version.h 1.0.14 2026/07/01 * * Author: Fred N. van Kempen, * @@ -54,8 +54,8 @@ /* Version info. */ #define APP_VER_MAJOR 1 -#define APP_VER_MINOR 0 -#define APP_VER_REV 22 +#define APP_VER_MINOR 1 +#define APP_VER_REV 0 #define APP_VER_PATCH 0