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
Community Hub
Community Hub
Member's Forum Is anyone interested with the Z80?
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Leaderboard
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Community Hub to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 151 replies
  • Subscribers 551 subscribers
  • Views 7177 views
  • Users 0 members are here
  • z80
Related

Is anyone interested with the Z80?

COMPACT
COMPACT over 9 years ago

The Z80 is still manufactured today and I was wondering whether there is any interest for a community or discussion group.

  • Sign in to reply
  • Cancel

Top Replies

  • Workshopshed
    Workshopshed over 9 years ago in reply to COMPACT +9
    Here's some of the books I learnt about Z80 from, I donated them to the Cambridge computer history museum last year.
  • Former Member
    Former Member over 9 years ago +6
    This is the circuit I made boards for sometime back to get people playing with them:
  • gdstew
    gdstew over 8 years ago in reply to COMPACT +6
    I worked at Mostek maintaining the Fairchild Sentry testers used to test the Z80s when they first began to manufacturer them. The second computer I every built (parts, pcb, solder) was the SDB-80 which…
Parents
  • DAB
    DAB over 9 years ago

    Hi Monte.

     

    I used Z80's back in the 1980's and used to have a bunch of them around, but with all the other processors now available, they are not something I would try to use today.  Too many support chips needed.

     

    Given the Cypress PSOC, I would start there instead.

     

    DAB

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • COMPACT
    COMPACT over 9 years ago in reply to DAB

    HI DAB

     

    As you know I've used both.

    The issue with using modern parts is that one needs a PC and also allows one to gloss over the fundamentals with everything provided on a platter.

     

    Building a Z80 system forces one to at least assemble some hardware, learn machine code if desired, have many more hazards to navigate and develop a full sense of what is going on.

     

    Here's a comparison of the different levels of programming learned.

     

    PSOC C

    main() {

         unsigned char a=0;

         for(;;) {

              write_LED(a);

              a = ~a;

         }

    }

     

    Z80 ASSEMBLY

    LED_PORT     EQU     %01

     

    START:

         XOR A

    $1:

         OUT     (LED_PORT), A

         CPL

         JR     $1

     

     

    Z80 HEX

    AF D3 01 2F 18 FB

     

    Have a great day!

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Cancel
  • DAB
    DAB over 9 years ago in reply to COMPACT

    Ah but have you looked at the ARM assembly language under the PSOC?

     

    I suspect that it might be about as efficient as the  Z80 code, but significantly faster.

     

    DAB

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • COMPACT
    COMPACT over 9 years ago in reply to DAB

    Yes, but how do you program it into a PSOC without an accompanying computer?

     

    I haven't looked at it in detail but;

    A typical ARM and Z80 has its RAM access speed based upon the period of its CPU Clock speed.

    At 8MHz it's 125ns for both devices (and 250ns for ROM on an ARM).

     

    As for clock cycles required for each instruction, they require about the same give or take a bit.

    Things get relatively more complex on an ARM because many of its instructions require 3 operands.

    e.g.

         ADC r1,r2,r3

     

    Admittedly the Z80 has some limited 3 operand instructions with its index registers.

    e.g.

         LD     A,(IX+d)

     

    As for speed if we built a Z80 with SiGe transistors it'd operate at 210GHz at that speed it becomes difficult to interconnect it with other components.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • COMPACT
    COMPACT over 9 years ago in reply to DAB

    Yes, but how do you program it into a PSOC without an accompanying computer?

     

    I haven't looked at it in detail but;

    A typical ARM and Z80 has its RAM access speed based upon the period of its CPU Clock speed.

    At 8MHz it's 125ns for both devices (and 250ns for ROM on an ARM).

     

    As for clock cycles required for each instruction, they require about the same give or take a bit.

    Things get relatively more complex on an ARM because many of its instructions require 3 operands.

    e.g.

         ADC r1,r2,r3

     

    Admittedly the Z80 has some limited 3 operand instructions with its index registers.

    e.g.

         LD     A,(IX+d)

     

    As for speed if we built a Z80 with SiGe transistors it'd operate at 210GHz at that speed it becomes difficult to interconnect it with other components.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
Children
  • clem57
    clem57 over 9 years ago in reply to COMPACT
    As for speed if we built a Z80 with SiGe transistors it'd operate at 210GHz at that speed it becomes difficult to interconnect it with other components.

    I kind of doubt that statement, sir. IBM claims SiGe speed records | EE Times  back in 2004 claims a 60 GHz speed.  But Z80 could operate faster if miniaturized to the degree the ARM is. image

    Clem

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • COMPACT
    COMPACT over 9 years ago in reply to clem57

    Always good to be sceptical.

     

    http://www.eetimes.com/document.asp?doc_id=1199863

    https://www.researchgate.net/publication/3941932_013_mm_210_GHz_fT_SiGe_HBTs_-_expanding_the_horizons_of_SiGe_BiCMOS

    https://books.google.com.au/books?id=sanRmmHKiMgC&printsec=frontcover&dq=isbn:1420066862&hl=en&sa=X&ved=0ahUKEwirgdiNga7…

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Cancel
  • COMPACT
    COMPACT over 7 years ago in reply to clem57

    Milton Feng and Walid Hafez have an experimental BJT working at 605GHz. IBM and AMD claimed to have switching transistors as fast as 2.0-3.3TeraHertz.

    At that speed I wonder how they'll dissipate the heat and everything would have to be soo close together to work.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • 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