Composite Video Text/Graphics Display

The Text Video Display is complete!   I’ve discovered a simple microcontroller and have taken a new approach to create a 40×25 monochrome text display.   I am using an Atmel ATMega8 controller which contains 1k of SRAM and 8K of Flash ROM.   I store the character data in the SRAM and the font is stored along with the program in the Flash ROM.   The interface is an 8 bit parallel port with a strobe input and a busy output.   It can be connected directly to a 65C22 8 bit port or any generic parallel port with ease.
While testing with the earlier circuits, I kept having problems with jitter while writing data from the host.   I finally decided to drop the 74ACT715 and find a microcontroller that could handle the task.   I tried a PIC 16F628, but it just didn’t have the horsepower or enough onboard RAM to simplify the circuit.   The Atmel ATMega8 was perfect.   It had just enough I/O and onboard memory to handle the task.Composite Video Text-Graphics Display
You can enable one of the two sets at any time. The primary font provides all 256 standard DOS characters,   The alternate font provides 128 characters and the inverse of each.   These are accessed by using toggle commands as defined below:
Lower = the lower 128 characters with the supported control characters (see description below).
Upper = the upper 128 characters including the box drawing characters in Primary mode, inverse characters in Alternate mode.
Primary Font Select = Enable the 256 DOS character set.
Alternate Font Select = Enable a subset of 128 characters with Inverse video support.
See the Command Bytes below for the specific toggle commands.


The display uses a non-interlaced refresh cycle which causes the pixels to be generated on every other horizontal line of the TV.   For most smaller TV’s, this is not noticeable (as seen on the sample display above).   However, you will notice this effect on larger TV’s (27 inch and higher).   This is an example of what it might look like:


The firmware is complete and the prototype assembled and tested!   Some last minute changes include increasing the clock speed from 14.318MHZ to 16MHz.   This increased the horizontal border and display response.   The source code for the ATMega8 is now available in the Downloads section.   Here is a picture of the completed circuit. It measures just 2.5″ x 1.9″:
Here’s how the interface works:
The Host polls the Busy line and waits for it to go inactive (J4 selects active high or active low), then loads the data onto the data bus and clocks the strobe high.   The Busy line will go active and stay active until the data has been processed.   The time it takes to process a data byte depends upon several factors, including display refresh operations and display movements such as scrolling.
Here is a simple timing diagram:Schematic Composite Video Text-Graphics Display
The 74HC573 Octal Latch is not necessary as long as you leave the data inputs stable until the Busy Flag is reset, but I decided to add it to make the circuit more versatile.   The 74HC74 D Flip-flop acts as the strobe latch and Busy Flag, which ensures the host’s strobes are not missed by the ATMega8 during screen refresh.   It also divides the system 16MHz clock down to the 8MHz needed for the shift register.   The 74HC165 shift register takes the parallel font data and shifts it out to the analog section to produce the video display.   All timing and control is provided by the ATMega8’s program running at 16 MHz.   J3 is left open for NTSC, and shorted for PAL.   J4 selects the Busy Output logic level, short pins 1-2 for Active High or pins 2-3 for active low.
For more detail: Composite Video Text/Graphics Display


About The Author

Ibrar Ayyub

I am an experienced technical writer with a Master's degree in computer science from BZU Multan University. I have written for various industries, mainly home automation and engineering. My writing style is clear and simple, and I am skilled in using infographics and diagrams. I am a great researcher and am able to present information in a well-organized and logical manner.

Follow Us:
LinkedinTwitter
Scroll to Top