Log inRegister an accountBrowse CSDbHelp & documentationFacts & StatisticsThe forumsAvailable RSS-feeds on CSDbSupport CSDb Commodore 64 Scene Database
You are not logged in - nap
CSDb User Forums


Forums > CSDb Entries > Release id #191551 : Kick Assembler V5.15
2021-01-05 12:57
Jammer

Registered: Nov 2002
Posts: 1289
Release id #191551 : Kick Assembler V5.15

Any chances for passing string variable to program counter/memory block label? Would come really handy when I compile separate memory blocks with parametrized names, e.g. in some loop, reading names from the list for batch conversion. General goal is to use one script asm file to produce multiple output binaries that I plan to exomize each individually. If that's technically impossible, is there any reasonable workaround? I'm, sadly, not on friendly terms with makefiles ;)
2021-01-05 15:48
Peacemaker

Registered: Sep 2004
Posts: 243
"General goal is to use one script asm file to produce multiple output binaries"

i am with you. would be fantastic to have such an option.
=)
2021-01-05 16:44
Krill

Registered: Apr 2002
Posts: 2839
Quoting Jammer
to exomize each individually
To "exomize" meaning to use needlessly slow decompression* to shave off just a few bytes compared to much faster (de-)compression algorithms? =)

* Still need to check out v3.1. And sorry to Zagon. It's just that people using Exomizer by default when better fitting alternatives exist is a pet peeve of mine. It's really mostly useful for cracks or size-constrained one-filed demos, where minimum size counts. Not so much anywhere else.
2021-01-05 17:03
Jammer

Registered: Nov 2002
Posts: 1289
My project is not that much depack-time critical ;) It's depacking game data actually which is cut into small chunks beforehand ;) Ranting on very packer doesn't add much to this particular thread, does it? :D
2021-01-05 17:11
Krill

Registered: Apr 2002
Posts: 2839
Quoting Jammer
My project is not that much depack-time critical ;) It's depacking game data actually which is cut into small chunks beforehand ;) Ranting on very packer doesn't add much to this particular thread, does it? :D
Yes, sorry for off-topicness. I was ranting about lack of "-D" (if there really is one) to pass in macro (or equivalent semantics) from command line elsewhere. =D

Anyhow, using a faster packer can significantly improve (minimise) type-compile-test cycle turn-over times during development.
Then you can still switch to tightest compression (if needed) for release. :)
2021-01-05 18:22
Jammer

Registered: Nov 2002
Posts: 1289
Quoting Krill
-D (if there really is one) to pass in macro (or equivalent semantics) from command line elsewhere. =D

Kick Assembler includes variable parametrization from commandline but that most probably won't solve my particular problem :/ Which is dynamic output filename.
2021-01-05 18:44
Krill

Registered: Apr 2002
Posts: 2839
Quoting Jammer
Quoting Krill
-D (if there really is one) to pass in macro (or equivalent semantics) from command line elsewhere. =D

Kick Assembler includes variable parametrization from commandline but that most probably won't solve my particular problem :/ Which is dynamic output filename.
You mean there is no "-o" CLI parameter... but the output filename is fixed in the source file or something?
2021-01-05 18:58
Jammer

Registered: Nov 2002
Posts: 1289
Kick Assembler has one commandline directive which is particulary interesting for me:

-mbfiles

Instead of compiling one big binary, it compiles every memory block with its program counter set up as separate binary. I could actually make a loop in script that takes different input data files for conversion/compilation but it's practically useless when I cannot change output filename accordingly. Dunno, maybe I missed some functionality that Slammer has already provided :)
2021-01-05 19:03
chatGPZ

Registered: Dec 2001
Posts: 11108
Quote:
You mean there is no "-o" CLI parameter... but the output filename is fixed in the source file or something?

to me it sounds like he wants kickassembler to do what the makefile does normally.
2021-01-05 19:12
Jammer

Registered: Nov 2002
Posts: 1289
Quoting Groepaz
to me it sounds like he wants kickassembler to do what the makefile does normally.

You bet I do ;) I'm actually thinking of one, probably easy workaround. Wish me luck :D

edit:

Right, I figured how to parametrize input file for one asm but it's still not as automatized as I wished ;)

java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterBackground01.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterBackground01.bin -log ItsUpToYou_Data_CharacterBackground01.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterBackground01.bin@0x7700 -o ItsUpToYou_Data_CharacterBackground01.exo

java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterBodyBase01.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterBodyBase01.bin -log ItsUpToYou_Data_CharacterBodyBase01.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterBodyBase01.bin@0x7700 -o ItsUpToYou_Data_CharacterBodyBase01.exo

java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterBody01.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterBody01.bin -log ItsUpToYou_Data_CharacterBody01.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterBody01.bin@0x7700 -o ItsUpToYou_Data_CharacterBody01.exo

java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterBody02.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterBody02.bin -log ItsUpToYou_Data_CharacterBody02.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterBody02.bin@0x7700 -o ItsUpToYou_Data_CharacterBody02.exo

java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterFaceBase01.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterFaceBase01.bin -log ItsUpToYou_Data_CharacterFaceBase01.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterFaceBase01.bin@0x7700 -o ItsUpToYou_Data_CharacterFaceBase01.exo

java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterFace01.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterFace01.bin -log ItsUpToYou_Data_CharacterFace01.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterFace01.bin@0x7700 -o ItsUpToYou_Data_CharacterFace01.exo

java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterFace02.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterFace02.bin -log ItsUpToYou_Data_CharacterFace02.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterFace02.bin@0x7700 -o ItsUpToYou_Data_CharacterFace02.exo

java -jar kickass.jar ItsUpToYou_Data_CharacterBitmaps.asm :filename="CharacterFace03.tga" -binfile -fillbyte 0 -o ItsUpToYou_Data_CharacterFace03.bin -log ItsUpToYou_Data_CharacterFace03.txt -showmem
exomizer.exe mem -P0 ItsUpToYou_Data_CharacterFace03.bin@0x7700 -o ItsUpToYou_Data_CharacterFace03.exo
2021-01-05 20:07
Slammer

Registered: Feb 2004
Posts: 416
Quote: Kick Assembler has one commandline directive which is particulary interesting for me:

-mbfiles

Instead of compiling one big binary, it compiles every memory block with its program counter set up as separate binary. I could actually make a loop in script that takes different input data files for conversion/compilation but it's practically useless when I cannot change output filename accordingly. Dunno, maybe I missed some functionality that Slammer has already provided :)


Another way of directing output to different files is by using segmnets. If you don't want to read all the details about setting them up, there is a one-liner you can use (It set it up, direct the content to a file and switches output to that segment.)

.segment File1 [outPrg="MyFile1.prg"]
    *=$1000
    .byte 1,2,3,4



.segment File2 [outPrg="MyFile2.prg"]
    *=$1000
    .byte 4,5,6,7

.segment Default  // Restoring output to the standard file


I'm not sure it does what you wan't cos the segment names have to be unique so you can't put it in a macro, have it take an output filename and call it several times, etc.
 
... 3 posts hidden. Click here to view all posts....
 
Previous - 1 | 2 - Next
RefreshSubscribe to this thread:

You need to be logged in to post in the forum.

Search the forum:
Search   for   in  
All times are CET.
Search CSDb
Advanced
Users Online
Alakran_64
QuasaR/CENTRiC
mutetus/Ald ^ Ons
MagerValp/G★P
Apollyon/ALD
Cresh/Elysium
K-reator/CMS/F4CG
Martin Piper
Guests online: 131
Top Demos
1 Next Level  (9.8)
2 Mojo  (9.7)
3 Coma Light 13  (9.7)
4 Edge of Disgrace  (9.6)
5 Comaland 100%  (9.6)
6 No Bounds  (9.6)
7 Uncensored  (9.6)
8 The Ghost  (9.6)
9 Wonderland XIV  (9.6)
10 Bromance  (9.6)
Top onefile Demos
1 It's More Fun to Com..  (9.8)
2 Party Elk 2  (9.7)
3 Cubic Dream  (9.6)
4 Copper Booze  (9.5)
5 Rainbow Connection  (9.5)
6 TRSAC, Gabber & Pebe..  (9.5)
7 Onscreen 5k  (9.5)
8 Wafer Demo  (9.5)
9 Dawnfall V1.1  (9.5)
10 Quadrants  (9.5)
Top Groups
1 Oxyron  (9.3)
2 Nostalgia  (9.3)
3 Booze Design  (9.3)
4 Censor Design  (9.3)
5 Crest  (9.3)
Top Swappers
1 Derbyshire Ram  (10)
2 Jerry  (9.8)
3 Violator  (9.8)
4 Acidchild  (9.7)
5 Starlight  (9.6)

Home - Disclaimer
Copyright © No Name 2001-2024
Page generated in: 0.044 sec.