This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Interfacing an 8051 to a computer screen

Hi,
I am making a project using an atmel 89c51 microcontroller which has to be interfaced with an lcd screen and switches to work like a mini gaming device.I have already written the code of the game in the "C" language which is working fine. I also have a design of the basic hardware circuitry required for 8051 to run(like crystal oscillator ,power suppy ,switches). I am required to use a computer lcd screen as a display.The rest of the computer is not required only the microcontroller circuit and the computer monitor.This is where i am having trouble.What i'd like to ask is:
1. Is this feasible?.....If not would it be possible if i used an atmega16, or not at all possible even then.

2. Can anyone help me with some material required to design the circuit and the write code related to interfacing pc lcd screen with my circuit?

Parents
  • Why go for the least capable general-purpose processor you can find on the market (it does have very nice features as a microcontroller but hardly any stack and lousy pointer support etc) to try to produce graphical output for presentation on a display?

    What is wrong with using an ARM chip with integrated display controller hardware?

    The 8051 is good at looking at bits, and controlling bits. It can play with timers, serial ports, SPI, I2C, LCD text displays and a number of other things. But it is not a good processor for graphical displays.

Reply
  • Why go for the least capable general-purpose processor you can find on the market (it does have very nice features as a microcontroller but hardly any stack and lousy pointer support etc) to try to produce graphical output for presentation on a display?

    What is wrong with using an ARM chip with integrated display controller hardware?

    The 8051 is good at looking at bits, and controlling bits. It can play with timers, serial ports, SPI, I2C, LCD text displays and a number of other things. But it is not a good processor for graphical displays.

Children