element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Dev Tools
  • Products
  • More
Dev Tools
Forum What to use for video output?
  • Forum
  • Documents
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Dev Tools to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 4 replies
  • Answers 3 answers
  • Subscribers 79 subscribers
  • Views 1250 views
  • Users 0 members are here
  • partquestion
  • fpga?
  • microcontroller?
Related

What to use for video output?

ashtons
ashtons over 6 years ago

Hello! I'm new here and I'm not sure if I am asking in the correct community.

 

I have a personal project I have been working on (planning to work on, I'm not too confident in my lack of skill). Essentially I'm trying to build my own 8-bit/16-bit computer based around the W65C816 (which is not on Newark - I looked), and I am planning on using a separate chip for video output. However, I am unsure whether to use an FPGA or a microcontroller, or even which specific chip to use.

 

For what sort of video capabilities I would be looking to program onto the chip, as well as any requirements I would need for the chip itself, they are as follows:

  • Through Hole is perferred, Surface Mount can be converted.
  • Can work as an MMIO device (i.e. can be put on the system bus).
  • May or may not use internal RAM for storing the state of the screen as well as text characters.
  • 64 colors, using 2 bits for each RGB channel.
  • Standard 640 by 480 VGA resolution.
  • Color cells! (like the NES or old Commodore computers)
  • Bitmap graphics and sprites (for the games)

 

(And, before you ask, yes I know about the Gameduino, if you were going to ask. However it does not fit my needs exactly, lacking proper color cells and a bitmap graphic mode, and it cannot be used on a parallel system bus. And if I have to learn FPGA to modify the Gameduino, I might as well make the entire thing from scratch.

  • Sign in to reply
  • Cancel

Top Replies

  • dougw
    dougw over 6 years ago +5 suggested
    Check out the VS23S010 . It is also used by wolfgangfriedrich to make a display shield .
  • shabaz
    shabaz over 6 years ago +4 suggested
    Hi Ashton, A company called VLSI make such chips, they are quite niche so not many other manufacturers of an all-in-one chip like this. See this thread for some part numbers: https://www.element14.com…
  • ashtons
    ashtons over 6 years ago in reply to shabaz +3
    Yes it is basically a retro system. I'll have to check all the suggestions I've gotten so far, but I like how helpful this community seems to be. Edit: Currently checking the VLSI chip datasheet, and I…
  • shabaz
    0 shabaz over 6 years ago

    Hi Ashton,

     

    A company called VLSI make such chips, they are quite niche so not many other manufacturers of an all-in-one chip like this. See this thread for some part numbers: https://www.element14.com/community/message/248502/l/ttl-video-chip#248502

    There's likely no hope for a modern chip to be through-hole for this, but the packages are hand-solderable (and there are proto adaptor boards to break out the SMD to pins if desired.

    However, the chips mentioned above may not support graphics primitives and sprites (I've not checked the datasheet, but that is available from the VLSI site). To do that would require it to be implemented in software if you wish to use such a chip.

    Another option is to do it all in an FPGA, and then implement those primitives in the FPGA in hardware. That may be an uphill struggle (depends on how much effort you're willing to put in, since describing hardware in a hardware description language it is not like software programming). There are likely existing projects to copy though (implementing a graphics processor is a popular thing for FPGAs) such as this one: https://opencores.org/projects/orsoc_graphics_accelerator

    But if this is a retro system, then you may not need that. The old handheld PDAs from two decades ago, had slow-ish 68k compatible processors, and no hardware graphics engine (all graphics instructions were implemented in software on the 68k) and they were fast enough for some games.

    • Cancel
    • Vote Up +4 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • dougw
    0 dougw over 6 years ago

    Check out the VS23S010.

    It is also used by wolfgangfriedrich to make a display shield.

    • Cancel
    • Vote Up +5 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • ashtons
    0 ashtons over 6 years ago in reply to shabaz

    Yes it is basically a retro system. I'll have to check all the suggestions I've gotten so far, but I like how helpful this community seems to be.

     

    Edit: Currently checking the VLSI chip datasheet, and I cannot find anything that either confirms or denies the chip having support for primitives. Also looking for Verilog tutorials, just in case.

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • wolfgangfriedrich
    0 wolfgangfriedrich over 6 years ago in reply to dougw

    Thanks dougw for remembering my project.

    The VS23S010 only outputs composite video and would be restricted to 8 colours at 640x480. The chip does not support colour cells, which was a really genius concept to increase the colour count.

    Also, it only has a basic block memory copy function, which could implement a basic type of sprite, but it would overwrite the background image data and it has no collision detection.

    My shield only has the SPI communication option wired, the parallel bus access would need some blue-wires and would only work on a 3.3V host system, because those pin would need to be bidirectional. All required signals are accessible on test points.

     

    I have 2 projects for the VS23S040 in the planning stage, but nothing to show yet. image

     

    Cheers,

    - W.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube