TV Noise Anthology by JAC! [web]
[nfo]
|
||||||||
---|---|---|---|---|---|---|---|---|
|
||||||||
|
popularity : 62% |
|||||||
alltime top: #3913 |
|
|||||||
|
||||||||
added on the 2010-11-07 01:05:52 by JAC! |
popularity helper
comments
owned!
haha, thumb for the attitude :D
the world may now you had to make a demo about it and send jazz brainshock to japanese demo scenes with no bbcode and unicode involved.
the 2010 version roxx
you made a demo about it! :D
win.
greetings to JAC, fuckings to Daemon
I wouldn't thumb up random noise on any platform, but you get a piggy for showing DHC.
Pwned.
Quote:
I like tv noise, and I'd thumb this up if it was really tiny
This needs 3 thumbs then, plus a bonus for 2010 :)
that's the spirit!
haha, totally owned !
thumb needs to go for original 2010 version :D
thumb needs to go for original 2010 version :D
lol totally pwnedga :D
yep owned
and extra thumb for the nostalgic feeling i got looking at the screenshot
and extra thumb for the nostalgic feeling i got looking at the screenshot
lol atari strikes back :)
lol
Hear, hear!
Good sports, lad!
Good sports, lad!
Rocks
owned!
I wanted to do it myself, but now it's too late :)
Rulez!
ATARI
Now could you try to make a fullscreen version so that there is no frame? I did my TV noise routine a few years ago but that was nowhere near your 32 byte limit - rather a 100 byte one (and I really thought this was pretty optimized) :-) and it even would not run on a real hardware since it used the 239th scanline.
Quote:
Since the DRAM is broken, I had to pack this one into 16 bytes.
you're the man. :D
So I'll not thumb it instead...
Nice stuff.
Nice stuff.
Selfvote is ok in this case. +1 for size!
Dude, it rocks.
:D
For size
:)
haha, you rock ! i´d thumb again for the paddle-version ;)
Very realistic! Tried it on real hardware with paddles. Get more and more angry when I tried to get better picture! ;-)))
Whoa! 5 extra thumbs worth of awesome in the interactive version!
nasty one :D felt real
JAC!: really no need to, you´ve been the master of tvnoise from beginning of the "compo" ;)
and after you made that interactive one i do wonder what else you have in petto but even the onelinered_versions cant beat you up to now ! ;) ( cause they are just possible in one line due to syntax_language/system ! )
and after you made that interactive one i do wonder what else you have in petto but even the onelinered_versions cant beat you up to now ! ;) ( cause they are just possible in one line due to syntax_language/system ! )
The most impressive one!
rolf
snap dogs
Video please?
Weird. :P
yes
Oh my goodness :)
Anthology, ok
ok
Hissssssssssssssssssss!
noise, biatch!
meh
like it
lists containing this prod
submit changes
if this prod is a fake, some info is false or the download link is broken,
do not post about it in the comments, it will get lost.
instead, click here !
So please do not take it serious, hehe.
Those who neither have an Atari nor a TV set can use youtube.
>> TV Noise 1987 <<
It's Saturday night and I needed some distraction from coding so I surfed on Pouet.
You wouldn't imagine what was going on there.
Somebody wrote ".... who can't even code 10 lines of code".
Somebody else wrote "Make it in 32b next time".
So I had to do it - in 10 lines of code and 32 bytes ;-)
This one is actually from 1987 when I got my first assembler book
and found out that the Atari has a random register. Today I would
say "it's not a release it's just an effect" - know what I mean...
lda #$40 sta $bc25 ;Move screen to $4040 sta 756 ;Move charset to $4000 loop lda $d20a ;Random sta $4000,x sta $4100,x sta $4200,x sta $4300,x inx bvc loop
>> TV Noise 2010 <<
On your B/W TV with real sync it looks and sounds like this.
loop lda #$c3 ora $d20a ;Random sta $bc25 ;Move screen beyond $c300 sta $d409 ;Change charset sta $d400 ;Overscan distorsion sta $d201 ;White noise asl $d200 ;Frequency lsr 710 ;Black background bvc loop
>> TV Noise 2011 <<
Broken DRAM on your 30 year old Atari looks like this.
Since the DRAM is broken, I had to pack this one into 16 bytes.
loop lda #$c3 ;Ensure charset is in ROM area ora $d20a ;Random sta $d409 ;Set charset bvc loop