Stories
Slash Boxes
Comments

Dev.SN ♥ developers

posted by LaminatorX on Friday February 21 2014, @01:33AM   Printer-friendly
from the I-don't-care,-I'm-still-free.-You-can't-take-the-garage-from-me dept.

demonlapin writes:

"Brian Benchoff at Hackaday has an ambitious new project: a homebrew computer based not on a classic 8-bit processor like the Z80 or 6502, but on the 16-bit Motorola 68000. It's a backplane-based machine with wire-wrapped connections planned. His first summary post is here. Blinkenlights are planned."

[ED Note: With so much commercially available hardware getting more and more locked down, projects like this are a good reminder of what is possible for a dedicated enthusiast.]

 
This discussion has been archived. No new comments can be posted.
Display Options Breakthrough Mark All as Read Mark All as Unread
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • (Score: 3, Interesting) by fleg on Friday February 21 2014, @05:28AM

    by fleg (128) on Friday February 21 2014, @05:28AM (#4183)

    anyone know which workstations he is talking about?

    "Putting a 68k C compiler on this computer isn't hard, but UNIX is. The first UNIX workstations used two 68000 CPUs - one for normal processing, and another to reset the first if a page fault occurred."

    Starting Score:    1  point
    Moderation   +2  
       Interesting=2, Total=2
    Extra 'Interesting' Modifier   0  

    Total Score:   3  
  • (Score: 1) by pixeldyne on Friday February 21 2014, @05:50AM

    by pixeldyne (2637) on Friday February 21 2014, @05:50AM (#4194)

    What was the limitation of the 68000? Because I ran bsd quite comfortably on an 020 (no mmu) with 2mb ram.

    • (Score: 2, Informative) by Uncle_Al on Friday February 21 2014, @11:40AM

      by Uncle_Al (1108) on Friday February 21 2014, @11:40AM (#4368)

      Apollo DN100
      There were two 68000's. When the first page faulted, the second cleaned up
      the fault and restarted the first.

    • (Score: 0) by Anonymous Coward on Friday February 21 2014, @02:13PM

      by Anonymous Coward on Friday February 21 2014, @02:13PM (#4441)

      Animats posted on an old (similar) article that the 68000 didn't do instruction backout properly. Not sure how that works, though.

    • (Score: 1, Informative) by Anonymous Coward on Friday February 21 2014, @02:55PM

      by Anonymous Coward on Friday February 21 2014, @02:55PM (#4458)

      I believe Unix needs a MMU to run properly. The 68020 was the first m68k with a MMU chip, and the 68030 was the first to have the MMU on-die.

      • (Score: 2, Interesting) by Uncle_Al on Friday February 21 2014, @03:16PM

        by Uncle_Al (1108) on Friday February 21 2014, @03:16PM (#4479)

        > I believe Unix needs a MMU to run properly. The 68020 was the first m68k with a MMU chip, and the 68030 was the first to have the MMU on-die.

        68000 unix machines were built, using designs including variations of the "SUN" MMU design or the Moto 68451
        You just couldn't do demand paging with the 68000 because you couldn't restart an instruction.

      • (Score: 0) by Anonymous Coward on Friday February 21 2014, @06:33PM

        by Anonymous Coward on Friday February 21 2014, @06:33PM (#4583)

        > I believe Unix needs a MMU to run properly.

        As other people have mentioned, uCLinux can run on a 68000 [eetimes.com] without an MMU!

        • (Score: 1) by darinbob on Friday February 21 2014, @08:23PM

          by darinbob (2593) on Friday February 21 2014, @08:23PM (#4624)

          Yea, but that's not really Unix. And I'm saying that as someone who believes Linux is Unix.
          Basically you're left without memory protection; which doesn't really make something non-Linux by itself.
          However you are unable to dynamically grow the size of heap or stack for processes. So like Minix you either allocate a standard stack size for everything or you specify a specific stack individually for each process. All memory is shared, everyone presumably allocates from the same heap, etc.

          • (Score: 0) by Anonymous Coward on Friday February 21 2014, @09:02PM

            by Anonymous Coward on Friday February 21 2014, @09:02PM (#4641)

            > Yea, but that's not really Unix. And I'm saying that as someone who believes Linux is Unix.

            True. But given the limitations of the 68000, I would rather run something Linux-like than System 7-like. If you can't have memory protection, you might as well have preemptive multitasking!

  • (Score: 3, Informative) by shortscreen on Friday February 21 2014, @06:38AM

    by shortscreen (2252) on Friday February 21 2014, @06:38AM (#4210)

    I'm not sure which system used dual 68Ks in the way described, but there were a bunch of 68K-based UNIX systems. For instance:
    http://www.old-computers.com/museum/computer.asp?c =254 [old-computers.com]
    http://www.old-computers.com/museum/computer.asp?c =767 [old-computers.com]

  • (Score: 1) by den Os on Friday February 21 2014, @07:40AM

    by den Os (2340) on Friday February 21 2014, @07:40AM (#4244) Homepage

    I used to run minix on my ST1040

  • (Score: 2, Informative) by darinbob on Friday February 21 2014, @07:18PM

    by darinbob (2593) on Friday February 21 2014, @07:18PM (#4596)

    I had always thought this was the early Sun-1, however it appears this used a custom designed MMU. Sun-2 used 68010 and again with a custom MMU.

    A big problem with 68000 was that some exceptions could not be restarted after an interrupt, which is where the trick of using two CPUs in parallel came from. One would be cycle or half cycle behind and then be halted if the earlier CPU detected a fault. I can't discover what computers actually used this technique though but it's been talked about for decades.

    The 68010 fixed this problem and added some privileged instructions, and was pin compatible. However it wasn't only slightly faster so most companies just waited for the 68020 instead.

    So I don't know how the Sun-1 really managed this with only one 68000. I suspect there were some operations that just couldn't be recovered but it could do enough to run System 7.