Last Comment Wins!

Status
Not open for further replies.

DamageINC

K3's Useless Admin
|K3| Executive
tumblr_mtpvjeDThw1qklztwo1_500.png


tumblr_mtpvjeDThw1qklztwo3_500.png
.......................................................





















































breaking-bad-season-2.jpg


o-BREAKING-BAD-570.jpg


bb601.jpg
 
Last edited:

SoRude

|KKK|'s Swagga McDaddy
Former Krew Member
Probably the best tv series ever. Thank you very much for getting me into it D :luv:
 

SoRude

|KKK|'s Swagga McDaddy
Former Krew Member
Already watched whole first season because you said it was good :) haha
kinda crapped myself when half the glades went under
 

WaLLy

Lieutenant General
|K3| Executive
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:
 

Kreubs

|K3|Minecraft Admin
|K3| Executive
: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
 

Link

|KKK|'s Storyteller
Former Krew Member
That moment when you don't pay attention to where you're walking... XD

fa0cbeee9627bf7c161e5f173b42bc20.gif
 
Status
Not open for further replies.
Top Bottom