Cardia on 3/10/2006 at 15:19
what do i have to do to have my photo in the photoalbum?
Matthew on 3/10/2006 at 15:23
Quote Posted by TTLG Photo Album
So, you'd like to add your smiling face would you?
All you have to do is attach a copy of your favourite photo of yourself to an email bearing the subject line TTLG PHOTO ALBUM and send it to [email]photoalbum@ttlg.com[/email]
.
Jakeyboy on 5/10/2006 at 09:51
if cardia1 = girl then
msgbox "naked pix plz"
else if cardia1 = boy then
msgbox "send pix of g/f naked plz"
else
msgbox "eww"
end if
Pory on 6/10/2006 at 10:25
Quote Posted by Jakeyboy
if cardia1 = girl then
msgbox "naked pix plz"
else if cardia1 = boy then
msgbox "send pix of g/f naked plz"
else
msgbox "eww"
end if
Do it in ASM and I'll be impressed.
I <3 ASM.
User was banned by David on 8-10-2006
Mortal Monkey on 6/10/2006 at 14:11
I really don't know
Code:
.data
ewwstr:
.ascii "eww\n\0"
.align 4
boystr:
.ascii "send pix of g/f naked plz\n\0"
.align 4
girlstr:
.ascii "naked pix plz\n\0"
.align 4
warnstr:
.ascii "Warning:\0"
.align 4
.text
jakey:
save %sp,-96,%sp
mov 0,%o0 !hwnd parent: NULL
sethi %hi(warnstr),%o2 !lpcstr title
or %o2,%lo(warnstr),%o2
cmp %i0,70 !char F
be girl
nop
cmp %i0,77 !char M
be boy
nop
sethi %hi(ewwstr),%o1
or %o1,%lo(ewwstr),%o1
ba callmb
girl:
sethi %hi(girlstr),%o1
or %o1,%lo(girlstr),%o1
ba callmb
boy:
sethi %hi(boystr),%o1
or %o1,%lo(boystr),%o1
callmb:
call MessageBox,4
mov 0,%o3 !uint flags: MB_OK
ret
restore
.type jakey,#function
.size jakey,(.-jakey)
dvrabel on 6/10/2006 at 22:59
SPARC?
Mortal Monkey on 6/10/2006 at 23:58
I think so, yes.