Search found 7 matches

by FredrikR
Fri Jun 17, 2005 6:55 am
Forum: Programming
Topic: Poll - Which Assembler Do You Use?
Replies: 19
Views: 10475

Mike Naberezny wrote:
Quote:
I am also an UltraEdit user. Thanks for the wordfile!
You're welcome! From what I hear, this wordfile will soon be part of the ACME distribution for DOS/Windows.

Regards,

Fredrik
by FredrikR
Tue Jun 14, 2005 12:03 pm
Forum: Programming
Topic: Poll - Which Assembler Do You Use?
Replies: 19
Views: 10475

ACME cross-assembler. I use it under Win32, but it's available for several platforms. I've also written a word file for UltraEdit so I get syntax highlighting (The word file is available from here ).

ACME was the first cross-assembler I tried. I thought it worked great and could do everything I ...
by FredrikR
Tue Jun 07, 2005 5:35 pm
Forum: Programming
Topic: Advanced data structures in ASM?
Replies: 4
Views: 6349

Ok, so there are simpler forms of hashing using buckets which provide worse performance but simpler implementation. I generally take a pragmatic approach. If that does the job good enough, then go ahead use it.

If you intend on putting no more than 256 items in your database, then you can get by ...
by FredrikR
Tue Jun 07, 2005 1:19 pm
Forum: Programming
Topic: Advanced data structures in ASM?
Replies: 4
Views: 6349

Hashing on 6502

I don't think it'd be terribly difficult to build asm code for hashing, but for computers which typically have 64KB of RAM or less, hashing is usually too inefficient with memory to be a very good idea. For hashing to be efficient, you need room in the hash table for 50-100% more items (usually ...
by FredrikR
Fri Jan 14, 2005 2:42 pm
Forum: Programming
Topic: JeffSort on the 6502
Replies: 25
Views: 11987

Mike seems busy at the moment. Here's the ShellSort code available until it pops up on 6502.org:

http://microheaven.com/6502/16bitShellSort.html

/Fredrik
by FredrikR
Wed Dec 29, 2004 2:54 pm
Forum: Programming
Topic: JeffSort on the 6502
Replies: 25
Views: 11987

I've now corrected my code for ShellSort and sent it to Mike, so it should reappear on the site shortly.

The code now also provides an InsertionSort since it only takes a few extra bytes of code to do so. InsertionSort is faster than ShellSort if only a few values are out of place or if no values ...
by FredrikR
Thu Jun 24, 2004 12:59 am
Forum: Programming
Topic: JeffSort on the 6502
Replies: 25
Views: 11987

Mats,

I hadn't discovered the forum until now (I haven't been a frequent visitor until now, but now that I know there's a forum, that might change).

Glad to see your test results. I'd quite like to have your test data, so I can reproduce the bug. My address is fredrikXyzzYramsberg.net (replace ...