From 246814e63b6893b7d8b9f211620f41a94b85b271 Mon Sep 17 00:00:00 2001 From: polluks2 <74630735+polluks2@users.noreply.github.com> Date: Fri, 18 Feb 2022 00:43:49 +0100 Subject: [PATCH] smarter manufacturer some kind of promotion --- libsrc/lynx/exehdr.s | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libsrc/lynx/exehdr.s b/libsrc/lynx/exehdr.s index d63c0524d..0fbe99150 100644 --- a/libsrc/lynx/exehdr.s +++ b/libsrc/lynx/exehdr.s @@ -16,8 +16,12 @@ .word __BANK1BLOCKSIZE__ ; bank 1 page size .word 1 ; version number .asciiz "Cart name " ; 32 bytes cart name - .asciiz "Manufacturer " ; 16 bytes manufacturer + .byte "cc65 V" ; 16 bytes manufacturer + .byte ((.VERSION >> 8) & $0F) + '0' + .byte '.' + .byte ((.VERSION >> 4) & $0F) + '0' + .byte (.VERSION & $0F) + '0' + .asciiz " " .byte 0 ; rotation 1=left ; rotation 2=right .byte 0,0,0,0,0 ; spare -