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 > 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
t0m3000/HF^BOOM!^IBX
zscs
kbs/Pht/Lxt
A3/AFL
Mike
Ramon B5/DESiRE
redcrab/G★P
Rock/Finnish Gold
Guests online: 73
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.6)
6 Aliens in Wonderland  (9.6)
7 No Bounds  (9.6)
8 Comaland 100%  (9.6)
9 Uncensored  (9.6)
10 Wonderland XIV  (9.6)
Top onefile Demos
1 Happy Birthday Dr.J  (9.7)
2 Layers  (9.6)
3 It's More Fun to Com..  (9.6)
4 Cubic Dream  (9.6)
5 Party Elk 2  (9.6)
6 Copper Booze  (9.6)
7 TRSAC, Gabber & Pebe..  (9.5)
8 Rainbow Connection  (9.5)
9 Dawnfall V1.1  (9.5)
10 Daah, Those Acid Pil..  (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 Fullscreen Graphicians
1 Joe  (9.7)
2 Veto  (9.6)
3 Facet  (9.6)
4 The Sarge  (9.6)
5 Carrion  (9.5)

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