[A83] Re: Grey scale(and enterlacing, is that the right word for it?)


[Prev][Next][Index][Thread]

[A83] Re: Grey scale(and enterlacing, is that the right word for it?)




Ok, I have a small problem which is odd.
I have it set up so it should display a completly grey screen.
but it has garbled junk on it, this is what i'm using right now:

    ld bc,768
    ld hl,SafeRam1
loop1:
    ld (hl),255
    inc hl
    djnz loop1

    ld bc,768
    ld hl,gbuf
loop2:
    ld (hl),0
    inc hl
    djnz loop2

anyone know whats wrong? oh, and the grey scale looks fine, but it's only 3 
level, what was the guy talking about 4 level?




Follow-Ups: