oberon VS A2OS

Compare oberon vs A2OS and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
oberon A2OS
2 4
14 48
- -
1.8 0.0
over 3 years ago over 1 year ago
Verilog Modula-2
- GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

oberon

Posts with mentions or reviews of oberon. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-02-25.
  • Project Oberon
    7 projects | news.ycombinator.com | 25 Feb 2022
    This project is still a great example of a complete computer design, starting from Niklaus Wirth's own RISC5 CPU (not a RISC-V) and very simple peripherals over the OS, runtime/garbage collector, compiler, GUI and simple example applications.

    One problem of the original implementation is that it was based on an old Xilinx Spartan 3 development board. This is not only no longer available, but it is one of the few FPGA boards that used 32 bit wide fast (12 ns IIRC) asynchronous SRAM chips. Wirth's hardware design relies heavily on this.

    Some years ago, there was a compatible board, the OberonStation. However, it seems this is no longer manufactures: https://pcper.com/2015/12/meet-the-oberonstation-kid-friendl...

    However, some modified designs exist that implement a cache in FPGA block RAM and an SDRAM controller. These can be used one more recent FPGA boards:

    - FleaFPGA "Ohm" board with a Lattice ECP5 FPGA and 32 MB RAM (https://fleasystems.com/fleaFPGA_Ohm.html) - https://github.com/Basman74/Oberon_SDRAM

    - Radiona ulx3s, another ECP5 in an open source design (https://github.com/emard/oberon) - https://github.com/emard/oberon

    - PapilioPro using a Xilinx Spartan 6 LX, another open source PCB design (https://papilio.cc/index.php?n=Papilio.PapilioPro) - https://opencores.org/projects/oberon_sdram

    Shameless plug: my student Rikke's port of Project Oberon to RV32I (this is a real RISC-V), however, we still need to find some time to build an FPGA-based SoC. Currently, it runs in emulation: https://github.com/solbjorg/oberon-riscv

  • OberonStation, an Oberon RISC Workstation (Archived)
    1 project | news.ycombinator.com | 22 Jun 2021
    The problem with recreating the original Project Oberon system hardware on a current FPGA board is that Prof. Wirth's original design for the Xilinx Spartan 3 starter kit board (https://reference.digilentinc.com/spartan-3/spartan-3) relied on the fact that this board had 1 MB of fast, 32 bit wide, asynchronous SRAM, which is easy to handle. Thus, the CPU clocked at 25 MHz didn't require a cache and even had cycles to spare for the framebuffer accesses.

    The OberonStation board replicated this design by using two 16-bit wide SRAMs. All other current boards using SRAM only have a single 16-bit wide SRAM, so all accesses to machine words such as the RISC5 instructions would take two cycles; often, the RAM is also too small, e.g. the BlackIce (https://mystorm.uk) has only 512 kB.

    Most of the boards on the market today have SRAM or DDR RAM, which makes controlling the external memory much more complex and requires significant changes to the nice and simple Project Oberon hardware. There are ports using SDRAM, e.g. for the ulx3s (https://radiona.org/ulx3s/, https://github.com/emard/oberon) or FleaFPGA and Papilio Pro (https://opencores.org/projects/oberon_sdram).

    On a really large FPGA, you could get by using on-chip block RAM only, but FPGAs with 1 MB of block RAM are still quite expensive...

A2OS

Posts with mentions or reviews of A2OS. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-26.
  • Oberon: The tiniest but richest FOSS HLL and OS you've never heard of
    10 projects | news.ycombinator.com | 26 Aug 2022
    Because of pjmlp's hint I just looked into the repositories https://github.com/btreut/a2 and https://github.com/metacore/A2OS, but didn't find a coroutines module. I'm aware that Active Oberon (Patrik Reali, 2004) includes concurrency, but this is a different language than the one used for System 3.
  • Project Oberon
    7 projects | news.ycombinator.com | 25 Feb 2022
    The Oberon channel has several videos of Oberon in action,

    https://www.youtube.com/results?search_query=The+Oberon+Chan...

    While Oberon was quite cool, people should also learn about its Xerox influence,

    "Eric Bier Demonstrates Cedar"

    https://www.youtube.com/watch?v=z_dt7NG38V4

    Also dive into what happened afterwards, Oberon-2, Active Oberon, Zonnon,...

    Active Oberon could be considered quite modern, also makes the distinction between safe and unsafe pointers, which improves the experience for low level coding.

    https://github.com/metacore/A2OS

    One of the best things about these systems is proving what systems programming with automatic memory management were capable of.

    Given Oberon-2's influence on Go, maybe improving Fyne (https://fyne.io/fynedesk/) with something like gRPC for the dynamic experience, could be a possible sucessor.

  • Leveraging the Go Type System
    1 project | news.ycombinator.com | 9 Feb 2021
    A couple, you can start here to see how the Active Oberon based OS looked like,

    https://www.progtools.org/article.php?name=oberon§ion=co...

    Some links are broken now, because ETHZ no longer hosts the A2 site, however you can get the latest language report at http://cas.inf.ethz.ch/boards/2/topics/1

    And the source code and old documents for the original A2 OS at github, https://github.com/metacore/A2OS

What are some alternatives?

When comparing oberon and A2OS you can also consider the following projects:

Oberon_SDRAM - Oberon core for FleaFPGA Ohm board

oberon-riscv - Oberon RISC-V port, based on Samuel Falvo's RISC-V compiler and Peter de Wachter's Project Norebo. Part of an academic project to evaluate Project Oberon on RISC-V.

THM-Oberon

a2 - Active Oberon System (AOS), aka A2, and Bluebottle OS

oberon-compiler - N. Wirth's Project Oberon RISC compiler ported to Go.

oberonc - An Oberon-07 compiler for the JVM

OfrontPlus - Oberon family of languages to C translator for ARM, x64 and x86 architectures

OberonSystem - Modified version of the original from http://www.projectoberon.com/ for use with the Oberon IDE

oberon - Project Oberon RISC emulator in Go

TheOberonCompanionCD - This is the original contents of the CD to the book "The Oberon Companion" (vdf, 1998)