You can code assembly for that and it'll work with amost every processor in the series.
But if the 4004 is what you want, then more power to you! But I have one thing to say to you...
name "8086" org 100h mov ax, 3 int 10h mov ax, 1003h mov bx, 0 int 10h mov ax, 0b800h mov ds, ax mov [02h], '8' mov [04h], '0' mov [06h], '8' mov [08h], '6' mov [0ah], ' ' mov [0ch], 'O' mov [0eh], 'W' mov [10h], 'N' mov [12h], 'S' mov [14h], '!' mov cx, 10 mov di, 03h c: mov [di], 11101100b add di, 2 loop c mov ah, 0 int 16h ret
Compile that one!