Diagonal.asm
This program draws a single diagonal line, from the top-right corner
of the screen to the bottom-left corner of the screen.
Since the screen size is 256x512 pixels, this means that every row
contains exactly two black pixels. For instance, the following
pixels are all black:
(0,511), (0, 510), (1, 509), (1, 508), (2, 507), ... ,
(254, 3), (254, 2), (255, 1), (255, 0)