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 > Branch too far in 64TASS
2008-08-13 17:17
Higgie

Registered: Apr 2002
Posts: 113
Branch too far in 64TASS

hiho!

what does 'Branch too far' mean?

the readme of 64tass says: 'can't relative branch that far'

i understand that sentence but what is the limit then?
and how to deal with the limitation?

sorry for coming up with stupid stuff already known to most of the decent coders here.... ;)

thanx in advance!
 
... 3 posts hidden. Click here to view all posts....
 
2008-08-13 17:55
Radiant

Registered: Sep 2004
Posts: 639
What Scout says. Under normal circumstances (demo or game coding) you wouldn't want the compiler to automatically generate long branches for you.
2008-08-13 18:24
Higgie

Registered: Apr 2002
Posts: 113
well, i don't see it being 'normal circumstances' when i'm coding assembler. ;)

'premature optimization is the root of all evil' (Donald E. Knuth) ... i know!

but as long as the assembler gives me a warning i think it's ok. so i can come back to that branch later to rework my code, if necessary. atm i'm quite happy that i don't have to deal with all those little obstacles myself. your help and the little help from 64tass are well appreciated. :)

i will keep in mind that there could occur some implicit behaviour depending on the assembler options i use.
2008-08-13 19:17
JackAsser

Registered: Jun 2002
Posts: 1989
@higgie: just do it manually. :D I mean, if the compiler complains, simply invert your branch and add a jmp. It's really not that hard.

F.e.

beq farAwayThatComplains

Invert it and make it branch past the jmp:

bne *+3
jmp farAwayThatComplains ; won't complain anymore

Simple as that!


2008-08-13 21:03
Cruzer

Registered: Dec 2001
Posts: 1048
Agree with Scout et al, this long branch feature sounds risky. Any coder will learn how to make long branches as one of the first things. At least it should be a pseudo command, e.g. "lbcc".
2008-08-13 22:14
Frantic

Registered: Mar 2003
Posts: 1627
If I was writing an assembler, I would also go for "lbcc" and pseudo-ops like that, to keep the distinction clear.
2008-08-13 23:48
Higgie

Registered: Apr 2002
Posts: 113
@jackasser: you see me convinced. :)
@cruzer: yeah! such a pseudo command would definitly be superior over any configuration based behaviour.
2008-08-14 05:35
Scout

Registered: Dec 2002
Posts: 1568
I guess you can make, using Cruzers example, a macro for it in 64tass:

lbeq .macro
bne *+3
jmp \1
.endm

Something like that.
2008-08-14 10:10
WVL

Registered: Mar 2002
Posts: 886
Quote: @higgie: just do it manually. :D I mean, if the compiler complains, simply invert your branch and add a jmp. It's really not that hard.

F.e.

beq farAwayThatComplains

Invert it and make it branch past the jmp:

bne *+3
jmp farAwayThatComplains ; won't complain anymore

Simple as that!




FAIL!

should be

bne *+5
jmp FarAwayThatComplains

:)

Or just use + and -, which is easier imo..

bne +
jmp FarAway
+
2008-08-14 11:06
JackAsser

Registered: Jun 2002
Posts: 1989
@WVL: blahblahblahblahblahblalblah. :D
2008-08-14 11:26
WVL

Registered: Mar 2002
Posts: 886
Quote: @WVL: blahblahblahblahblahblalblah. :D

bah! you just dont understand the power of * ;D
Previous - 1 | 2 - 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
Viti/Hokuto Force
kbs/Pht/Lxt
Apollyon/ALD
OEP/AoD
Hok/Remember
HCL/Booze Design
McMeatLoaf
Magic/Nah-Kolor
TheRyk/MYD!
Krill/Plush
Knut Clausen/SHAPE/F..
Tim/Silicon Limited
aNdy/AL/Cosine
Guests online: 156
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 NTSC-Fixers
1 Pudwerx  (10)
2 Booze  (9.7)
3 Stormbringer  (9.7)
4 Fungus  (9.6)
5 Grim Reaper  (9.3)

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