While I was looking frame-by-frame, I've found some text in the teaser.
Really interesting stuff. The beginning text reads: "This is what a 6502-compatible computer display looks like. It is the same one used in the The hex above is a program that checks the display and attachments. For more info download Raven Microcyb SIM6502. A link to it is provided in the related links section of the display."
The hex appears to read as: :0000 A9 00 AA 20 EF FF 08 8A :0008 4C 02 00
Considering it's talking about "compatible displays", I'd hazard a guess that this is code written for a 6502 processor! "Raven Microcyb" seems to be a Netrunner thing:
http://www.netrunneronline.com/cards/raven-microcyb-owl/
This hex, decompiled for a 6502 processor, reads
LDA #$00
TAX
JSR $FFEF
PHP
TXA
JMP $0002
.END
This seems to be an extremely short assembly program. I'm not sure what it does — even when plugged into an emulator. Someone more familiar with assembly than me could likely figure this out.
Interesting stuff, though! It even hints at a second, proper "trailer".