Small fix to ECHO pseudo. Version bumped to 1.1.0.

This commit is contained in:
Fred N. van Kempen
2026-07-02 01:18:59 -04:00
parent 103ae4696a
commit 2f16e6df35
3 changed files with 11 additions and 8 deletions

View File

@@ -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, <waltje@varcem.com>
* Bernd B”ckmann, <https://codeberg.org/boeckmann/asm6502>
@@ -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);

View File

@@ -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, <waltje@varcem.com>
*
* 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 {

View File

@@ -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, <waltje@varcem.com>
*
@@ -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