Language…
10 users online: Batata Douce, crocodileman94, Darolac, DasFueller, Dzing, Gamet2004, Hammerer,  icrawfish,  Nanako, TheXander - Guests: 276 - Bots: 283
Users: 64,795 (2,377 active)
Latest user: mathew

what is $

I have a question!(long later not thread)
I look blocks,patches,sprites have $

What is $
$ is must pay money? (I do not know)
True is only one!!!
As far assembly is concerned, $ does mean hexadecimal. For instance.

Code
LDA #10

Loads 10 decimal (A hexadecimal) into accumulator (# here means indirect value, it doesn't load any RAM address), while.

Code
LDA #$10

Loads 16 decimal (10 hexadecimal) into accumulator.

Numbers can be also marked as binary, which is marked with %. For instance.

Code
LDA #%1010

Which loads 1010 binary (10 decimal, A hexadecimal) into accumulator.

Generally, $ is used for addresses (for instance STA $19 stores the power-up that is in accumulator), because debuggers usually prefer hexadecimal form for addresses which means that programmers will see the same thing in debugger as in the code and it's easier to tell how many bytes will be used for representing given value.
#ab{:)}Thanks your reply!#ab{:)}
True is only one!!!