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....
 
2012-07-20 08:54
Conjuror

Registered: Aug 2004
Posts: 168
Joomla allows you to download pages as PDF. I'm sure other CMS's allow that too.
2012-07-20 10:51
andym00

Registered: Jun 2009
Posts: 44
slammer: I'm not sure, since I've not tried that kind of thing.. I'll have a look through it and see if there's some option for that..
2012-07-22 18:01
gryf
Account closed

Registered: Aug 2006
Posts: 14
Slammer,

There is loads of doc generating systems out there. Beginning from LaTeX (lots of latex2[you-name-it] converters) through standalone documentation systems, which are able to generate output in various format (Sphinx for example), to some markup languages which output can be set to anything.

I would use some restructured text format for source documentation and use rst2pdf and rst2html, or LaTeX because I'm mostly familiar with those. Also Sphinx seems to be right choice for this task, but it may require more time for getting grip with.
2012-07-22 22:12
Slammer

Registered: Feb 2004
Posts: 416
Thanks for the input. I'll check it out.
2012-07-23 07:05
Oswald

Registered: Apr 2002
Posts: 5031
overkill imho. text, pdf, html, all works and word can do those. all I need is ctrl+f to have a useful documentation. if sum1 cant use these he cant code 6510 either. :)
2012-07-23 11:44
chatGPZ

Registered: Dec 2001
Posts: 11154
for a java program i'd not even think and use javadoc. if only because everyone does the same and solving a problem using google is a breeze.

and i'd strongly advice against using someones personal favourite - if it isnt one of the two majorly used ones =)

that said, vice uses TeX with texinfo - you can generate lots of different target formats with that.
2012-07-23 20:10
Cruzer

Registered: Dec 2001
Posts: 1048
Javadoc doesn't make sense for KickAss, since it's not a Java API, but a program that interprets something very different. Too bad there still don't seem to be any perfect solutions for writing a document in PDF and HTML in one go. But I think HTML would be sufficient. PDF is mostly targeted for printing, but who really needs that?
2012-08-08 03:54
TWW

Registered: Jul 2009
Posts: 541
Question:

Is there a fancyschmancy way to do this:

.const SomeString = "abcdef"+toHexString($1234)


Thus producing the new string: "abcdef4r"

where "4r" is a lo-hi byte (as it would go into memory) presentation of $1234 ($34 = "4" & $12 = "r")?




Oh and a minor suggestion: Please index your manual for kickass. links and a content list on the side would make the manual world class ;-)
2012-08-08 07:08
ruk

Registered: Jan 2012
Posts: 43
@TWW

On the top of my head, and I bet there exists a fancier way =)

      .const table = "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ !\"#$%&'()*+,-./0123456789:;<=>?"
      
      .function byteToString(val){   
           .return table.charAt(val).string()
      }
      
      .function wordToString(val){
            .return byteToString(<val) + byteToString(>val)
      }
      
      .const SomeString =  "ABCDEF" + wordToString($1234)
      
      .print SomeString
2012-08-08 08:01
Cruzer

Registered: Dec 2001
Posts: 1048
@Ruk: That would of course require a 256 chars long table to avoid index out of bound.
Previous - 1 | ... | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | ... | 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
zscs
St0rmfr0nt/Quantum
iAN CooG/HVSC
Didi/Laxity
JEZ
Guests online: 63
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 Aliens in Wonderland  (9.6)
7 Comaland 100%  (9.6)
8 No Bounds  (9.6)
9 Uncensored  (9.6)
10 Wonderland XIV  (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 Musicians
1 Rob Hubbard  (9.7)
2 Stinsen  (9.7)
3 Jeroen Tel  (9.6)
4 Linus  (9.6)
5 psych858o  (9.6)

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