Possible to make an LCD to display the game title?

Discussion in 'Game Development General Discussion' started by Anhaedra, Jan 23, 2007.

  1. Anhaedra

    Anhaedra Active Member

    Joined:
    Jul 31, 2006
    Messages:
    42
    Likes Received:
    0
    What I mean is is it possible to make an LCD screen, on a Genesis 1st gen specifically, display the game title of the cartridge inserted? Like by making it read the ROM Header perhaps? I think the header is in the same spot on all the ROMs but I've really no idea. I know it seems pointless but I have an LCD and nothing to do with it.
     
  2. retro

    retro Resigned from mod duty 15 March 2018

    Joined:
    Mar 13, 2004
    Messages:
    10,354
    Likes Received:
    822
    Heh, I'd agree with the pointless thing! Sounds rather costly just to use up a spare component. I don't really think it would be worth the time or effort.
     
  3. marshallh

    marshallh N64 Coder

    Joined:
    Mar 16, 2006
    Messages:
    661
    Likes Received:
    26
    Is it a simple fixed-width text screen? If so, it's probably a HD44780 compatible screen, you can control them easily with a microcontroller. With a PIC/AVR wired to the cartridge, it's possible. But not a good first project.
    Forget about using the screen if it's color or is a graphic type.
     
  4. Anhaedra

    Anhaedra Active Member

    Joined:
    Jul 31, 2006
    Messages:
    42
    Likes Received:
    0
    It's HD44780 compatible. Would it have to be wired to a cart, or could it be done on the motherboard?
     
  5. Calpis

    Calpis Champion of the Forum

    Joined:
    Mar 13, 2004
    Messages:
    5,906
    Likes Received:
    21
    I wouldn't call this a very worthwhile project. There are a few methods to do this:

    - you could use a microcontroller but decode the bits of the address separately since most microcontrollers don't have that sort of I/O.The MCU would then either have to be interrupted or poll the high address bit for a match then it would have to watch the lower address bits of the header. Again the lack of I/O would probably require you to shift in data, so the MCU would have to run EXTREMELY fast.

    -You could modify the console so that the MCU can play with the cart and hold the console in reset while it does so.

    -You could interface a MCU with the console via I/O and a BIOS ROM. This would work best IMO but require the most logic. If you're already using this much logic, it might be best to only use logic to interface with the LCD.
     
    Last edited: Jan 24, 2007
sonicdude10
Draft saved Draft deleted
Insert every image as a...
  1.  0%

Share This Page