0 Members and 2 Guests are viewing this topic.
I up-rated your post, but I think it could have been done slightly nicer. When you say this, it makes you seem like an expert on everything.
Quote from: graphmastur on March 06, 2011, 04:48:15 pm I up-rated your post, but I think it could have been done slightly nicer. When you say this, it makes you seem like an expert on everything. Interesting. Yeah, it could be nicer, and I knew it even while I was typing it up. But it's not me seeming liking an expert. It's frustration because everyone's telling me "No, you need to do it this way!" as if THEY are experts on everything.
I'm in the $9D95 camp. I just feel everything works out better for everyone if we use the accepted and widely-held convention of hex for addresses. No hard feelings that you disagree.
Well, I suggest to begin with .org 40339, then explaining thing about the 40339 byte, then switch to hex, explaining everyone uses hex because it's easier, while explaining hex, then never talk of the decimal form again.
So you're coding away, and you start noticing this weird thing in other people's ASM programs:Code: [Select].org $9D95...and you're wondering - WHAT IS THIS WEIRD THING? WHAT AM I DOING WRONG?Fortunately, you're doing nothing wrong - it's just .org $9D95 is the same as .org 40339!
.org $9D95
Quote from: juju2143 on March 06, 2011, 05:08:57 pmWell, I suggest to begin with .org 40339, then explaining thing about the 40339 byte, then switch to hex, explaining everyone uses hex because it's easier, while explaining hex, then never talk of the decimal form again.This is a good idea - you can even introduce it with this:QuoteSo you're coding away, and you start noticing this weird thing in other people's ASM programs:Code: [Select].org $9D95...and you're wondering - WHAT IS THIS WEIRD THING? WHAT AM I DOING WRONG?Fortunately, you're doing nothing wrong - it's just .org $9D95 is the same as .org 40339! This will definitely clear up any ASM beginner confusion