vote up 2 vote down star

Long before you practice writing readable code, what "magic numbers" you still remember up to this day?

here's some of my list:

  • 72 80 75 77 13 32 27 - up down left right enter space escape
  • 1 2 4 128 - blue green red blink
  • 67h 33h 17h - interrupt for EMS, mouse, printer
  • function AH 9, interrupt 21
  • alt+219 for block ASCII
  • alt+164 ñ
  • 90 NOP
  • 13 10 carriage return, line feed
  • ascii 1 and 2 face, ascii 3 heart. no not this heart: <3 :-)
  • debug -o72,10 -o71,12 clears the BIOS password. I don't know what those numbers mean, it's like a trade secret that gets shared with each other during college days.
  • ascii 7 sounds a beep

P.S. Somehow, remembering some of these magic numbers can help you in some tech problems, your keyboard is broken, the office pal's keyboard doesn't have accented characters. An anecdote, during college, one of my friend asked me how to remove the newlines in his Word document. Not having used Word so much then, I somehow "intuitively" guessed to find ^013 and replace it with blank. Well it works :-)

flag
show 6 more comments

42 Answers

prev 1 2
vote up 2 vote down

Tons, some of which fade in and out. Assembly language stuff from several processors.

I know a lot of 8080 stuff in octal, and the corresponding hex for some of these. Similarly for a certain amount of ASCII.

I think that 040.136 is the the HDOS $TYPTXT subroutine (print a string embedded inline in the code, terminated by a NUL). In split-octal.

0x64 = 100 decimal.

0xF0 - 0xF9 are the digits 0-9 in EBCDIC.

0xCAFEBABE is the magic number for Java class files.

call $0005 in CP/M to make a system call. That worked in MSDOS up to about version 3.1.

link|flag
show 1 more comment
vote up 1 vote down

J103 Recover a RM380z (last used in school early 80s)

49152 = spare 4k memory above basic on Commodore64

link|flag
vote up 1 vote down

Probably far too many, but it's hard to recall on-demand. :)

I hope I'll never forget $dff180, the custom chip register that holds the current background color on the Commodore Amiga computers. You could have a lot of fun writing 10-line assembler programs that quickly poked various values into that register, thereby creating full-screen color patterns that moved crazily.

link|flag
vote up 3 vote down

Bytes per MB: 1048576

link|flag
vote up 31 vote down

42

link|flag
show 1 more comment
vote up 5 vote down
poke 36879, <color> (vic-20)
link|flag
vote up 15 vote down
poke 53280, <color>
poke 53281, <color>
link|flag
show 1 more comment
vote up 1 vote down

CD 20

Int 20h, Return control of application back to DOS.

link|flag
vote up 2 vote down

Alt-0183 for ·

link|flag
vote up 1 vote down

$C030 (Apple II internal speaker control address.)

link|flag
vote up 1 vote down
  • int 19h in DOS. Jumps to the MBR and executes from there.
  • Alt-58 is the colon (:). I need this when stuck in vi and an unknown key-table (Dvorak, etc.)
link|flag
vote up 3 vote down

How about

call -151
link|flag
show 4 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.