From: utzoo!decvax!ucbvax!faustus
Newsgroups: net.jokes
Title: Silly Programming
Article-I.D.: ucbvax.923
Posted: Mon Feb 21 21:09:51 1983
Received: Tue Feb 22 06:22:06 1983


Or how about instruction sets without jump instructions? My favorite
6502 gimmick relates to this:

jmp xxyy -> 	push yy
		push xx
		.
		; about 50 lines of code here
		.
		rts

This always gets 'em. Anybody got any other examples of
intentionally obscure programming style like this?

	Wayne