22 lines
623 B
Plaintext
22 lines
623 B
Plaintext
include print "./print.dsa"
|
|
|
|
dw stack: 0x10000
|
|
db string: "An idiot admires complexity, a genius admires simplicity,
|
|
a physicist tries to make it simple, for an idiot anything the more complicated it is,
|
|
the more he will admire it, if you make something so clusterfucked he can't understand it he's
|
|
gonna think you're a god cause you made it so complicated nobody can understand it.
|
|
That's how they write journals in Academics, they try to make it so complicated people think you're a genius"
|
|
|
|
init:
|
|
// set up a stack.
|
|
ldw stack, bpr
|
|
mov bpr, spr
|
|
|
|
start:
|
|
lwi string, rg1
|
|
|
|
push rg1
|
|
call print::print
|
|
pop rg1
|
|
|
|
hlt |