Last Comment Wins!

Status
Not open for further replies.
Probably the best tv series ever. Thank you very much for getting me into it D :luv:
 
Already watched whole first season because you said it was good :) haha
kinda crapped myself when half the glades went under
 
Where do fat people buy clothes?
BEST ANSWER
The Girl With A Twirl answered 8 months ago
even if their fat does keep them warm nobody wants to see their cellulite ***'s and crusty genitals

pantherman321 answered 8 months ago
Wow, this has to be at the top for stupid questions.

A Gothic Odyssey answered 8 months ago
the BIG and TALL section of JcPenny
Source(s):
im fat i shop there

^:LOL:
 
:troll2:

8086 assembly for printing the current date, it would be an extra ~25 lines for the time. XD

Code:
assume cs:code, ds:data
data segment
    sun db 'Sunday, ', '$'
    mon db 'Monday, ', '$'
    tue db 'Tuesday, ', '$'
    wed db 'Wednesday, ', '$'
    thu db 'Thursday, ', '$'
    fri db 'Friday, ', '$'
    sat db 'Saturday, ', '$'
    days dw sun, mon, tue, wed, thu, fri, sat
    dom db '  -$'
    month db '  -$'
    year db '    $'
    a db 10
data ends
code segment
start:
    mov ax, data
    mov ds, ax
    mov es, ax

    mov ah, 2Ah
    int 21h
    
    push dx
    
    ;print day of the week
    mov bl, al
    add bl, al
    mov ah, 09h
    mov dx, days[bx]
    int 21h
    
    pop dx
    
    ;print day of the month
    mov al, dl
    mov ah, 0
    div a
    
    lea di, dom
    add al, '0'
    stosb
    xchg ah, al
    add al, '0'
    stosb
    
    push dx
    
    mov ah, 09h
    mov dx, 0
    mov dl, offset dom
    int 21h
    
    pop dx
    
    ;print month
    mov al, dh
    mov ah, 0
    div a
    
    lea di, month
    add al, '0'
    stosb
    xchg al, ah
    add al, '0'
    stosb
    
    mov ah, 09h
    mov dx, 0
    mov dl, offset month
    int 21h
    
    ;print year
    mov dx, cx
    mov ax, dx
    mov cx, 0
    mov cx, 4
    lea di, year
    yearX:
        div a
        xchg al, ah
        add al, '0'
        stosb
        xchg al, ah
        mov ah, 0
    loop yearX
        
    mov ax, 4C00h
    int 21h
code ends
end start
 
Status
Not open for further replies.
Back
Top