weekday names by pooq

.globl main
m:.ascii"Monday 
Tuesday 
Wednesday 
Thursday 
Friday 
Saturday 
Sunday"
main:mov $4,%eax
mov $1,%ebx
mov $m,%ecx
mov $62,%edx
int $128

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page