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 > Printing hex/decimal
2005-12-15 23:59
Wanderer
Account closed

Registered: Apr 2003
Posts: 478
Printing hex/decimal

I'm a bit rusty on this, it's been about 14 years since I've last done it:

I'm working on a utility and I need to...

a) print a decimal value (eg. 49152). I know there's a kernal routine you load with the low and high byte of your location and JSR$ the routine. It will print the decimal value.

or

b) print a hex address (eg. $c000) Now I used to have a nice routine to convert decimal to hex and print it but this has been lost to time.

I've tried searching for these routines online, but couldn't find anything. Any help would be appreciated :)

* Edit: I found the answer to (a), it's $BDCD *
2005-12-16 01:45
6R6

Registered: Feb 2002
Posts: 244
A)
address = $c000

ldx #<address
lda #>address
jmp $bdcd

B)
lda #>address
jsr hex2xa
stx $0400
sta $0401
lda #<address
jsr hex2xa
stx $0402
sta $0403
rts

hex2XA pha
and #$0f
jsr hex2sa
tax
pla
lsr
lsr
lsr
lsr
hex2sa clc
adc #$30
cmp #$3a
bmi hex2sb
adc #$06
hex2sb rts

2005-12-16 02:07
Wanderer
Account closed

Registered: Apr 2003
Posts: 478
Thank you kind sir... I appreciate the fast reply.

I'm just finishing the utility. :)
2009-07-29 06:07
TWW

Registered: Jul 2009
Posts: 541
Y = Byte to print in hex

tya
and #%00001111
tax
lda tab,x
sta $0401
tya
lsr
lsr
lsr
lsr
tax
lda tab,x
sta $0400
rts

tab .byte $30,$31,$32,$33,$34,$35,$36,$37
.byte $38,$39,$01,$02,$03,$04,$05,$06

neat lookuptable-trick for printing hex-values to the screen
TWW/Creators
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
fox/bonzai
Viti/Hokuto Force
Britelite/Dekadence
Ghost/Quantum
Skylab/The Movers
Sentinel/Excess/TREX
rexbeng
psych
Guests online: 72
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 Wonderland XIV  (9.6)
9 Memento Mori  (9.6)
10 Bromance  (9.5)
Top onefile Demos
1 It's More Fun to Com..  (9.7)
2 Party Elk 2  (9.7)
3 Cubic Dream  (9.6)
4 Copper Booze  (9.5)
5 TRSAC, Gabber & Pebe..  (9.5)
6 Rainbow Connection  (9.5)
7 Wafer Demo  (9.5)
8 Dawnfall V1.1  (9.5)
9 Quadrants  (9.5)
10 Daah, Those Acid Pil..  (9.5)
Top Groups
1 Nostalgia  (9.3)
2 Oxyron  (9.3)
3 Booze Design  (9.3)
4 Censor Design  (9.3)
5 Crest  (9.3)
Top Diskmag Editors
1 Jazzcat  (9.4)
2 Magic  (9.4)
3 hedning  (9.2)
4 Newscopy  (9.1)
5 Elwix  (9.1)

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