Abcout: Difference between revisions

From Esolang
Jump to navigation Jump to search
Content deleted Content added
m Reverted edits by Page crapper from explain xkcd (talk) to last revision by Sporeball
Tags: Replaced Rollback
Turing-incomplete
Tag: Reverted
Line 5: Line 5:
|author=[[User:Sporeball|sporeball]]
|author=[[User:Sporeball|sporeball]]
|year=[[:Category:2020|2020]]
|year=[[:Category:2020|2020]]
|class=[[:Category:Unknown_computational_class|unknown]]
|class=[[:Category:Finite state automata|Finite state automata]]
|files=N/A
|files=N/A
}}
}}
Line 27: Line 27:
==Implementations==
==Implementations==
Unlike with her previous language, [[naz]], the author did not immediately opt to complete a software implementation of abcout; instead, as of April 2021, she is attempting to implement it in hardware, in the form of a machine christened as the '''ABCO-1'''. Because this has not been completed, the language is as of yet [[:Category:Unimplemented|unimplemented]].
Unlike with her previous language, [[naz]], the author did not immediately opt to complete a software implementation of abcout; instead, as of April 2021, she is attempting to implement it in hardware, in the form of a machine christened as the '''ABCO-1'''. Because this has not been completed, the language is as of yet [[:Category:Unimplemented|unimplemented]].
==Computational class==

Since abcout can only access finite amount of 8-bit cells the language is a [[Finite state automata]]
==External resources==
==External resources==
* [https://github.com/sporeball/ABCO-1 ABCO-1] on GitHub
* [https://github.com/sporeball/ABCO-1 ABCO-1] on GitHub
Line 34: Line 35:
[[Category:Languages]]
[[Category:Languages]]
[[Category:2020]]
[[Category:2020]]
[[Category:Unknown_computational_class]]
[[Category:Finite state automata]]
[[Category:OISC]]
[[Category:OISC]]

Revision as of 10:22, 12 October 2025

abcout
Paradigm(s) imperative
Designed by sporeball
Appeared in 2020
Computational class Finite state automata
Reference implementation Unimplemented
File extension(s) N/A
Note that abcout is typically lowercased, even at the start of a sentence.

abcout (add and branch if carry out) is an OISC created by sporeball in 2020.

Overview

This OISC was first posed over Discord on February 26, 2020:

sporeball 02/26/2020
trying to conceptualize how to design an OISC
however i feel like the standard subleq a, b, c would be hard to build a circuit for (at least for me)
how computationally powerful would, say, an "add and branch if carry out" instruction be?

Each instruction takes the form A, B, C, and does what the above description would suggest: memory address A will have the value of memory address B added to it, and execution will branch to the instruction beginning at memory address C if the result is greater than 255, or to the next instruction in sequence otherwise. It is assumed that memory addresses A and B both contain an unsigned 8-bit integer.

abcout does not memory-map its instructions, in contrast to other OISCs, and instead keeps instructions and user space in separate blocks of memory.

Implementations

Unlike with her previous language, naz, the author did not immediately opt to complete a software implementation of abcout; instead, as of April 2021, she is attempting to implement it in hardware, in the form of a machine christened as the ABCO-1. Because this has not been completed, the language is as of yet unimplemented.

Computational class

Since abcout can only access finite amount of 8-bit cells the language is a Finite state automata

External resources