Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
09/22/04 02:25
Read: times


 
#77914 - RE: Silabs as video chip
Responding to: ???'s previous message
Craig,

8k memory is a good amount of memory to do a bit mapped monochrome TV display. A good looking one. I think the direct video input on this 5" el cheapo TV results in a clarity i see so far.

I did a TV vs. VGA display to "get a feel" for the implication and coding possibilities for Horz/Vert Sync operations. One issue was progressive scan vs. interlacing. Interlacing at TV speeds makes Horizonal lines "fuzzy" so the TVT demo does not interlace.

The DS'420 had the Clock Doubler enabled so forward speed was 22.1184 MHz. This rate was needed more for "granularity" of timing than for rate of execution. If you look at the Horizonal Data going out you will see a lot of compensitory "NOP"s:

;	-- pixel cycle --

vid_rld:
	movx	a,@dptr		;2 Fetch 8 bits of Video data
vid_lp:
	rlc	a		;1 Rotate each bit to Video Interface
	mov	pix,c		;2
	anl	dph,#3		;3 Wait .. equiv of one "DJNZ"
 	nop			

The above routine Fetches a byte of pixel data and emits the most sig. bit.

The next routine outputs all but the last remaining pixel bits:
;	-- "inner " pixel cycle --

	nop				;1 Wait .. equiv of movx
	nop				;1
	rlc	a			;1 Rotate each bit to Video Interface
	mov	pix,c			;2
	nop				;4 Wait .. Equiv of one DJNZ
	nop
	nop
	nop

This final part outputs the last pixel and loops to reload another 8 display pixels:

;	-- end pixel cycle --

	nop				;1 Wait .. equiv of movx
	nop				
	rlc	a			;Rotate each bit to Video Interface
	mov	pix,c
	djnz	r2,vid_rld	

You might notice that there's no "INC DPTR" as the DS'420 does this for me. All those NOPs could actually be hard coded to do something else regularly, (like more audio data like the original MAC did, perhaps the SILabs DACS...).

The accuracy and determinism of the code impact the display geometry and apparent clarity. I mentioned i expect to move the display to an "even steven" 14.318 MHz xtal to ease the generation of Video rates and still allowing 19.2 serial input.

regards,
p





List of 177 messages in thread
TopicAuthorDate
Atari 400/800 implementation with 8052            01/01/70 00:00      
   RE: Atari 400/800 implementation with 8052            01/01/70 00:00      
      Sorry...            01/01/70 00:00      
   RE: Atari 400/800 implementation with 8052            01/01/70 00:00      
   RE: Atari 400/800 implementation with 80            01/01/70 00:00      
   RE: Atari 400/800 implementation with 80            01/01/70 00:00      
   Microprocesor emulator?            01/01/70 00:00      
      RE: Microprocesor emulator?            01/01/70 00:00      
         RE: Microprocesor emulator?            01/01/70 00:00      
         RE: Microprocesor emulator?            01/01/70 00:00      
            6502 emulation            01/01/70 00:00      
               RE: 6502 emulation            01/01/70 00:00      
                  RE: 6502 emulation            01/01/70 00:00      
         RE: Microprocesor emulator?            01/01/70 00:00      
            RE: Microprocesor emulator?            01/01/70 00:00      
               RE: Microprocesor emulator?            01/01/70 00:00      
               RE: Microprocesor emulator?            01/01/70 00:00      
                  RE: Microprocesor emulator?            01/01/70 00:00      
                  RE: Microprocesor emulator?            01/01/70 00:00      
                     RE: Microprocesor emulator?            01/01/70 00:00      
                        RE: Microprocesor emulator?            01/01/70 00:00      
      RE: Microprocesor emulator?            01/01/70 00:00      
         RE: Microprocesor emulator?            01/01/70 00:00      
   RE: Atari 400/800 implementation with 8052            01/01/70 00:00      
      RE: Atari 400/800 implementation with 80            01/01/70 00:00      
   RE: Atari 400/800 implementation with 8052            01/01/70 00:00      
   Video output with 8052?            01/01/70 00:00      
      VGA?            01/01/70 00:00      
      RE: Video output with 8052?            01/01/70 00:00      
         RE: Video output with 8052?            01/01/70 00:00      
         RE: Video output with 8052?            01/01/70 00:00      
            RE: Video output with 8052?            01/01/70 00:00      
            RE: Video output with 8052?            01/01/70 00:00      
   RE: Atari 400/800 implementation with 8052            01/01/70 00:00      
      RE: Atari 400/800 implementation with 8052            01/01/70 00:00      
      RE: Atari 400/800 implementation with 80            01/01/70 00:00      
         Do we really need 6502 emulation?            01/01/70 00:00      
            RE: Do we really need 6502 emulation?            01/01/70 00:00      
               RE: Do we really need 6502 emulation?            01/01/70 00:00      
                  I'm game!            01/01/70 00:00      
                     RE: I'm game!            01/01/70 00:00      
                        RE: I'm game!            01/01/70 00:00      
                           RE: I'm game!            01/01/70 00:00      
                              RE: I\'m game!            01/01/70 00:00      
                                 RE: I\'m game!            01/01/70 00:00      
   8052-based video or off-chip solution            01/01/70 00:00      
      RE: 8052-based video or off-chip solutio            01/01/70 00:00      
      RE: 8052-based video or off-chip solution            01/01/70 00:00      
         RE: 8052-based video or off-chip solution            01/01/70 00:00      
         RE: 8052-based video or off-chip solution            01/01/70 00:00      
      My My...Where is the OLD spirit?            01/01/70 00:00      
   RE: Atari 400/800 implementation with 8052            01/01/70 00:00      
      LCD?            01/01/70 00:00      
         RE: LCD?            01/01/70 00:00      
            RE: LCD motiv?            01/01/70 00:00      
   Revisiting video & emulation            01/01/70 00:00      
      RE: Revisiting video & emulation            01/01/70 00:00      
         RE: Revisiting video & emulation            01/01/70 00:00      
            RE: Revisiting video & emulation            01/01/70 00:00      
            RE: Revisiting video & emulation            01/01/70 00:00      
               RE: Revisiting video & emulation            01/01/70 00:00      
                  RE: Revisiting video & emulation            01/01/70 00:00      
                  RE: Revisiting video & emulation            01/01/70 00:00      
      RE: Revisiting video & emulation            01/01/70 00:00      
         RE: Revisiting video & emulation            01/01/70 00:00      
            RE: Revisiting video & emulation            01/01/70 00:00      
               RE: Revisiting video & emulation            01/01/70 00:00      
                  RE: Revisiting video & emulation            01/01/70 00:00      
                     RE: Revisiting video & emulation            01/01/70 00:00      
                        RE: Revisiting video & emulation            01/01/70 00:00      
                           RE: Revisiting video & emulation            01/01/70 00:00      
                              Phillip implements 8052 video            01/01/70 00:00      
                                 RE: Phillip implements 8052 video            01/01/70 00:00      
                                    Phillip video user page            01/01/70 00:00      
                                       RE: Phillip video user page            01/01/70 00:00      
                                          Silabs as video chip            01/01/70 00:00      
                                             RE: Silabs as video chip            01/01/70 00:00      
                                       RE: Phillip video user page            01/01/70 00:00      
                                          RE: Phillip video user page            01/01/70 00:00      
                                             RE: Phillip video user page            01/01/70 00:00      
                              RE: Revisiting video & emulation            01/01/70 00:00      
   WHY?            01/01/70 00:00      
      RE: WHY?            01/01/70 00:00      
      None of the above            01/01/70 00:00      
   Programmable logic again            01/01/70 00:00      
   Defining the project & new ideas            01/01/70 00:00      
      RE: Defining the project & new ideas            01/01/70 00:00      
      RE: Defining the project & new ideas            01/01/70 00:00      
         RE: Defining the project & new ideas            01/01/70 00:00      
            RE: Defining the project & new ideas            01/01/70 00:00      
               RE: Defining the project & new ideas            01/01/70 00:00      
      RE: Defining the project & new ideas            01/01/70 00:00      
         RE: Defining the project & new ideas            01/01/70 00:00      
            RE: Defining the project & new ideas            01/01/70 00:00      
               RE: Defining the project & new ideas            01/01/70 00:00      
                  RE: Defining the project & new ideas            01/01/70 00:00      
                     RE: Efficiency            01/01/70 00:00      
                        RE: Efficiency            01/01/70 00:00      
                           RE: Efficiency            01/01/70 00:00      
                              RE: Efficiency            01/01/70 00:00      
                                 RE: Purpose of OS/Relocatable code            01/01/70 00:00      
                                    RE: Purpose of OS/Relocatable code            01/01/70 00:00      
                                       RE: Purpose of OS/Relocatable code            01/01/70 00:00      
                                          RE: Purpose of OS/Relocatable code            01/01/70 00:00      
                     RE: Defining the project & new ideas            01/01/70 00:00      
                        RE: Defining the project & new ideas            01/01/70 00:00      
                     RE: Defining the project & new ideas            01/01/70 00:00      
   Take a look            01/01/70 00:00      
   Starting specifications?            01/01/70 00:00      
      RE: Starting specifications?            01/01/70 00:00      
         I2C vs. parallel bus            01/01/70 00:00      
      RE: Starting specifications?            01/01/70 00:00      
         RE: Serial vs. parallel internal bus            01/01/70 00:00      
            RE: Serial vs. parallel internal bus            01/01/70 00:00      
      Then parallel..            01/01/70 00:00      
   RE: Atari 400/800 implementation with 8052            01/01/70 00:00      
      Re: Architecture questions            01/01/70 00:00      
      RE: Atari 400/800 implementation with 80            01/01/70 00:00      
         RE: Atari 400/800 implementation with 80            01/01/70 00:00      
            RE: Atari 400/800 implementation with 80            01/01/70 00:00      
               RE: Atari 400/800 implementation with 80            01/01/70 00:00      
                  RE: Atari 400/800 implementation with 80            01/01/70 00:00      
   Proposal: Internal Data Bus            01/01/70 00:00      
      RE: Proposal: Internal Data Bus            01/01/70 00:00      
         RE: Proposal: Internal Data Bus            01/01/70 00:00      
            RE: Command/Data line            01/01/70 00:00      
               RE: Command/Data line            01/01/70 00:00      
                  RE: Command/Data line            01/01/70 00:00      
                     RE: just recalled another            01/01/70 00:00      
                        RE: just recalled another            01/01/70 00:00      
                     RE: Alternative bus strategies            01/01/70 00:00      
         RE: Proposal: Internal Data Bus            01/01/70 00:00      
      RE: Proposal: Internal Data Bus            01/01/70 00:00      
         RE: Proposal: Internal Data Bus            01/01/70 00:00      
            RE: Proposal: Internal Data Bus            01/01/70 00:00      
               RE: Proposal: Internal Data Bus            01/01/70 00:00      
                  RE: Proposal: Internal Data Bus            01/01/70 00:00      
                     RAM quantity & Interrupts            01/01/70 00:00      
                        RE: RAM quantity & Interrupts            01/01/70 00:00      
      Where's the memory?            01/01/70 00:00      
         RE: Shared memory as the data bus?            01/01/70 00:00      
         RE: Where\'s the memory?            01/01/70 00:00      
            RE: Multiport/DMA limitations            01/01/70 00:00      
               RE: Multiport/DMA limitations            01/01/70 00:00      
                  DMA on the Atari            01/01/70 00:00      
                     RE: DMA on the Atari            01/01/70 00:00      
                        RE: DMA on the Atari            01/01/70 00:00      
                           RE: DMA on the Atari            01/01/70 00:00      
                           RE: DMA on the Atari            01/01/70 00:00      
               RE: Multiport/DMA limitations Yes But..            01/01/70 00:00      
   Future of this project            01/01/70 00:00      
      RE: Future of this project            01/01/70 00:00      
         Purpose of the project            01/01/70 00:00      
            RE: Purpose of the project            01/01/70 00:00      
         RE: Future of this project            01/01/70 00:00      
      RE: Future of this project            01/01/70 00:00      
      RE: Future of this project            01/01/70 00:00      
         RE: Future of this project            01/01/70 00:00      
      RE: Future of this project            01/01/70 00:00      
   RE: Atari 400/800 implementation with 80            01/01/70 00:00      
      RE: Atari games on CD            01/01/70 00:00      
   RE: Multiprocessing/ebay/vintage_puters            01/01/70 00:00      
   RE: Karas the Big Party Pooper            01/01/70 00:00      
      That's the point            01/01/70 00:00      
      RE: Karas the Big Party Pooper            01/01/70 00:00      
         RE: Karas the Big Party Pooper            01/01/70 00:00      
            RE: Karas the Big Party Pooper            01/01/70 00:00      
               RE: in a grid            01/01/70 00:00      
                  RE: in a grid            01/01/70 00:00      
                     RE: in a grid            01/01/70 00:00      
                        RE: in a grid            01/01/70 00:00      
                           RE: in a grid            01/01/70 00:00      
      RE: Karas the Big Party Pooper            01/01/70 00:00      
         RE: Karas the Big Party Pooper            01/01/70 00:00      
   RE: Atari 400/800 implementation with 8052            01/01/70 00:00      
   About the multiprocessor scheme            01/01/70 00:00      
   Home built 8051 computer??            01/01/70 00:00      

Back to Subject List