pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/cross/64tass



Module Name:    pkgsrc
Committed By:   rhialto
Date:           Sat May 10 13:45:20 UTC 2025

Modified Files:
        pkgsrc/cross/64tass: Makefile distinfo

Log Message:
cross/64tass: update to 1.60.3243.

Changes (taken from https://csdb.dk/release/?id=252813&show=notes#notes):

r3243 (2025-05-10)
==================

Time to make another release as it'd be good to get the fixes out.

**Fixes**

* Rename memalign function
  Caused compilation failures if such function existed in standard library
* Struct members offsets were still addresses sometimes
  This could cause wrong diagnostic messages (#71)
* Improve indirect alignment directives
  In some cases they failed even if the alignment was doable
* Wrong value in addressing limit messages
  The full address mode was displayed while only the address value is relevant
* Typo causing various issues on win32
  Especially on newer versions. (#75)
* Listing file error got lost
  If an error occurred on creation of a listing file it wasn't reported
* Original definition note message even when location was not known
  Without the location it's useless, so it's avoided now.
* BBR and BBS long branches
  These broke at some point but are working now again.

**Changes**

* pow() now the same as power operator
  This also means powers of integers remain integer now if possible
* .from not limited to namespaces
  Symbols can come from dictionaries as well
* More specific error messages for some unlikely corner cases
  Out of memory errors were replaced with better fitting (and less fatal) messages.
* Improve first parameter of regular for loops
  Can be a compound assignment now, not just an assignment.
* hypot(a, b, c)
  Not restricted to two dimensions anymore
* log(v, base)
  The base of the logarithm can be specified now as an optional parameter
* Long branches can return now
  If the destination is a return then that'll be used instead of a jump.
* Hint on .enc and .cpu quoting
  There's a hint now that the argument needs to be quoted
* -X applies on s-record now
  Can be used to avoid S19 and force output to be at least S28.
* Searched in global scope note was removed
  Wasn't really useful as there's no source location it could point to.

**New**

* Symbol type
  Not all that new but it got a built-in name and can be converted from string
* Dictionaries from separate keys and values. dict(.(a, b, c), (1,2,3))
  This allows easier creation of enumerations from ranges of values
* Column oriented iterator .for loop
  For parallel iteration of several lists without indexing.
* PSH and PUL (RSH, RUL)
  Pseudo instructions for generic pushing and pulling (mostly registers)
* LDR, STR
  Pseudo instructions for generic load and store based on register parameter
* New cpu type 45gs02
  For mega65 projects. Please read the manual for mnemonics.
* --ctag-labels
  Some editors support it for jump to definition functionality.
* --cody-bin
  Simple output format used by Cody.
* --wdc-bin
  Output format used by WDC.

**Possible incompatibilities**

* Column oriented iterator for loop syntax
  Before the column oriented for loop one could get away with 'in [1,2],[3,4]'
  as an equivalent of 'in ([1,2],[3,4])'. As the former coma separated
  version is now the column oriented syntax the tuple must be explicitly
  written out. The latter version is backwards compatible.
* New pseudo instructions vs labels
  The new pseudo instructions might conflict with existing labels without
  colons. Please add colons in such cases.
* Long branch and always taken branch pseudo instruction changes
  The resulting binary might differ due to improvements. The main reason is
  that these might use returns now in some cases and branch merging got
  more conservative now.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/cross/64tass/Makefile \
    pkgsrc/cross/64tass/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/cross/64tass/Makefile
diff -u pkgsrc/cross/64tass/Makefile:1.1 pkgsrc/cross/64tass/Makefile:1.2
--- pkgsrc/cross/64tass/Makefile:1.1    Tue Sep 26 21:20:32 2023
+++ pkgsrc/cross/64tass/Makefile        Sat May 10 13:45:20 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2023/09/26 21:20:32 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2025/05/10 13:45:20 rhialto Exp $
 
-DISTNAME=      64tass-1.59.3120-src
+DISTNAME=      64tass-1.60.3243-src
 PKGNAME=       ${DISTNAME:S/-src//}
 CATEGORIES=    cross
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=tass64/}
Index: pkgsrc/cross/64tass/distinfo
diff -u pkgsrc/cross/64tass/distinfo:1.1 pkgsrc/cross/64tass/distinfo:1.2
--- pkgsrc/cross/64tass/distinfo:1.1    Tue Sep 26 21:20:32 2023
+++ pkgsrc/cross/64tass/distinfo        Sat May 10 13:45:20 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2023/09/26 21:20:32 wiz Exp $
+$NetBSD: distinfo,v 1.2 2025/05/10 13:45:20 rhialto Exp $
 
-BLAKE2s (64tass-1.59.3120-src.zip) = b17809b396ef429bf1c948643aacb2db70fcd07c52723ddadca3943c0f0109f2
-SHA512 (64tass-1.59.3120-src.zip) = 4cbccdcd05397937e410a00c6459b3c5df131e15b9e2ce78d493cf2eb3859c1ad6a6b56be05736f1f0d376a357c308b85e54f69973f4083c9e6e6c2b0326a2ac
-Size (64tass-1.59.3120-src.zip) = 752572 bytes
+BLAKE2s (64tass-1.60.3243-src.zip) = 864bd75e98a52001dd44d5ebcd3c7f17d9d9aa37626da774cd694496baf853b2
+SHA512 (64tass-1.60.3243-src.zip) = 900ad2acd54a39d337192e25c75abe23f2d88a0c4cce8e377d22d396c898d919284a8325cc9a4b7b5aeeaffc32e0efb965c15fe8c572ec0434dbc869fb47791b
+Size (64tass-1.60.3243-src.zip) = 771985 bytes



Home | Main Index | Thread Index | Old Index