Log inRegister an accountBrowse CSDbHelp & documentationFacts & StatisticsThe forumsAvailable RSS-feeds on CSDbSupport CSDb Commodore 64 Scene Database
 Welcome to our latest new user Coinoperator ! (Registered 2024-06-17) You are not logged in - nap
CSDb User Forums


Forums > C64 Coding > Kick Assembler Thread 2
2009-07-21 17:20
Slammer

Registered: Feb 2004
Posts: 416
Kick Assembler Thread 2

The previous thread took a little long to load, so this is a new fresh one..
 
... 592 posts hidden. Click here to view all posts....
 
2010-06-30 06:37
TWW

Registered: Jul 2009
Posts: 541
Awesome.

Seriously, Thanx for such a cool tool!

TWW/Creators
2010-06-30 13:33
Mace

Registered: May 2002
Posts: 1799
Hmm, 'nested' macros... interesting and simple, yet I never thought of it :-)
2010-08-18 09:36
Pantaloon

Registered: Aug 2003
Posts: 124
i found a bug:

.const LINK = false

begin:
.if (LINK == false)
{
.import c64 "\datapata\myfile.prg"
}
end:

.print end - begin


the print won't work, it will output the address at begin:
if i remove .if () it works.

-P
2010-08-20 05:07
Slammer

Registered: Feb 2004
Posts: 416
I will have a look at it.. Right now im on vacation in Austria - will be home on monday.
2010-09-02 09:11
Pantaloon

Registered: Aug 2003
Posts: 124
Feature request:

a method to generate a random unique list, ie:

.var randomNumbers = randomUniqueList(numberOfElements)

the randomUniqueList would give you back a list of values
between 0 and numberOfElements, no number should me mapped twice in the list.

Generating this kind of list using the built in Hashtable takes forever today.


Edit:

i found out doing this,


.var random_table = Hashtable()
.for (var i = 0; i < 12*40; i++ )
{
.eval random_table.put(i,i)
}

would generate a somewhat unique list because of the nature of the hashtable, but still its not random.

2010-09-02 10:15
Slammer

Registered: Feb 2004
Posts: 416
Why dont you use the random function? Quick Pseudocode:
for (;hashtable.getKeys().getsize()< noOfDesiredElements;) {
   .var randomNo = random()
   .eval hashtable.put(randomNo, randomNo) 
}

Nb. Since we dont have a while statement (yet) I use the for statement as a while
2010-09-02 11:10
Pantaloon

Registered: Aug 2003
Posts: 124
i found a better way,

shuffle() that can be done on lists :)
2010-09-02 18:55
JackAsser

Registered: Jun 2002
Posts: 1995
Quote: i found a better way,

shuffle() that can be done on lists :)


@Slammer: Collections.shuffle(List<?> list); *hint* *hint* and while you're at it, Collections.sort(List<?> list); :D Heck, .reverse is useful too!
2010-09-02 21:19
Slammer

Registered: Feb 2004
Posts: 416
JackAsser: Shuffle is already implemented. Sort and Reverse are, as you said, pretty easy to implement so they will be in the next release.. (reverse is implemented by just one extra line of code *S*)
2010-09-04 12:56
Slammer

Registered: Feb 2004
Posts: 416
I posted some examples of pseudo commands on codebase64.


Previous - 1 | ... | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ... | 61 - 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
Menace/Spaceballs
Tim/Silicon Limited
WVL/Xenon
CA$H/TRiAD
hedning/G★P
d0c
Linus/MSL
E$G/hOKUtO fOrcE
Murphy/Exceed
NecroPolo/Lethargy/H..
Guests online: 88
Top Demos
1 Next Level  (9.7)
2 13:37  (9.7)
3 Mojo  (9.7)
4 Coma Light 13  (9.7)
5 Edge of Disgrace  (9.7)
6 No Bounds  (9.6)
7 Uncensored  (9.6)
8 Comaland 100%  (9.6)
9 Wonderland XIV  (9.6)
10 Aliens in Wonderland  (9.6)
Top onefile Demos
1 Layers  (9.6)
2 Cubic Dream  (9.6)
3 Party Elk 2  (9.6)
4 Copper Booze  (9.6)
5 Rainbow Connection  (9.5)
6 It's More Fun to Com..  (9.5)
7 Dawnfall V1.1  (9.5)
8 Daah, Those Acid Pil..  (9.5)
9 Birth of a Flower  (9.5)
10 Quadrants  (9.5)
Top Groups
1 Nostalgia  (9.4)
2 Oxyron  (9.3)
3 Booze Design  (9.3)
4 Censor Design  (9.3)
5 SHAPE  (9.3)
Top Diskmag Editors
1 Magic  (9.4)
2 Jazzcat  (9.4)
3 hedning  (9.2)
4 Elwix  (9.1)
5 Remix  (9.1)

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