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
Learning Center
  • Learn
  • More
Learning Center
Blog One of the Best CPU ever made: MC680xx
  • Blog
  • Documents
  • Polls
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Learning Center to participate - click to join for free!
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: phoenixcomm
  • Date Created: 17 Dec 2023 7:38 PM Date Created
  • Views 2299 views
  • Likes 8 likes
  • Comments 9 comments
  • intel pentium
  • 68000 vs pentium
  • motorola mc68000
  • motorola mc68k
Related
Recommended

One of the Best CPU ever made: MC680xx

phoenixcomm
phoenixcomm
17 Dec 2023

imageIn the late 70's Motorolla, stunned the world with a new CPU family. It was the MK68k family first it was 32-bits internally,  Launched first was the MC68008 which only had an 8-bit external I/O bus. Following the MC68010 was released.  Followed by the MC68012 which included support for virtual memory. Next came the 2nd Generation CPUs MC68020 and MC6830. The MC68040 is a  3rd Generation CPU that was heavily pipelined! Then the 4th Generation emerged the MC68060 which was a supper scaller. 

The processor family was well thought out, from the beginning the MC6000 family had an integer math processor built on the die, but no floating point processors but later the family got two floating point processors MC68881 and later, the MC68882.

The MC68000 family was so successful, in fact, there were multiple computer systems built around the family, Radio Shack TRS-80 Model 16  (Feb 82),  Sun Microsystems Sun-2 (1983),  Apple Mac (1984),  TRS-80 Model 16, and others. 

image image image

The architecture of the MC8000 family was CISC or a Complex Instruction Set Computer, but there were additions. Like in any operation, you can do pre or post-operations like in one clock cycle C, Java, Python, and others. Below is a table that shows the difference between both processors Intel and Motorola.  Now being a C programmer this is neat.  Sorry I can't show the assembler for this, but I worked out to 5 instructions (Intel) vs 1 instruction (MC69000). What does this mean to software performance? Well, how about a for(int a; a <10; a++) with a counter or any other counter for that matter? 

Fins: This processor is in a lot of stuff, and was the favorite of embedded stuff, until recent times. 

INTEL  MOTOROLA

B = TempB - 1
C= TempC - 1
tempA = B + C
A = A + 1

+A = B- + C-
  • Sign in to reply
Parents
  • shabaz
    shabaz over 1 year ago

    It was an awesome chip : ) We studied it too, as part of a computer architecture curriculum.

    After uni, I tried making a handheld 68k computer, using the neat "Dragonball VZ" chip (which was a 68k core). I got to the stage of creating a board test program, with a memory monitor to test the RAM/ROM and started writing a first application (which was merely writing its output to a memory buffer pretending to be a screen). This board was used just to test the power supplies, so it's not populated. The 68k chip was at bottom-right of the board, and the other main chips are Flash and SRAM. 

    image

    Everything was an uphill struggle to do solo, there were no ESP32 etc for WiFi, so an external WiFi card was supposed to plug onto the PCMCIA connector in the photo below. The LCD screen was surplus from mobile phones and was only going to be 320x240 or something, but driving that was a pain too (there was no controller, so a CPLD was going to be used with a separate SRAM chip, to offload video refresh from the 68k).

    image 

    I really liked the Freescale/Motorola chips because they had excellent bootloaders, so you could get the initial code for the 68K running over UART, and then push into Flash from there. No fancy JTAG/programmers needed!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
Comment
  • shabaz
    shabaz over 1 year ago

    It was an awesome chip : ) We studied it too, as part of a computer architecture curriculum.

    After uni, I tried making a handheld 68k computer, using the neat "Dragonball VZ" chip (which was a 68k core). I got to the stage of creating a board test program, with a memory monitor to test the RAM/ROM and started writing a first application (which was merely writing its output to a memory buffer pretending to be a screen). This board was used just to test the power supplies, so it's not populated. The 68k chip was at bottom-right of the board, and the other main chips are Flash and SRAM. 

    image

    Everything was an uphill struggle to do solo, there were no ESP32 etc for WiFi, so an external WiFi card was supposed to plug onto the PCMCIA connector in the photo below. The LCD screen was surplus from mobile phones and was only going to be 320x240 or something, but driving that was a pain too (there was no controller, so a CPLD was going to be used with a separate SRAM chip, to offload video refresh from the 68k).

    image 

    I really liked the Freescale/Motorola chips because they had excellent bootloaders, so you could get the initial code for the 68K running over UART, and then push into Flash from there. No fancy JTAG/programmers needed!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
Children
  • phoenixcomm
    phoenixcomm over 1 year ago in reply to shabaz

    I feel your pain! ~~ Cris H. that why I wire wrap!!

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