From db169da95693193bdd05e4ad83c06d3d4954d99a Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Mon, 30 Mar 2020 07:24:46 +1300 Subject: [PATCH] Added asm2bf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #716 Co-Authored-By: Παλαιολόγος --- README.md | 1 + a/asm2bf.asm | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 a/asm2bf.asm diff --git a/README.md b/README.md index 75c5baaa..607975f8 100755 --- a/README.md +++ b/README.md @@ -65,6 +65,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Argh](a%5Cargh.agh) * [Arnoldc](a%5Carnoldc.arnoldc) * [Ash](a%5Cash.ash) +* [Asm2Bf](a%5Casm2bf.asm) * [Asp](a%5Casp.asp) * [Aspectj](a%5Caspectj.aj) * [Assembler 6502](a%5Cassembler_6502.asm) diff --git a/a/asm2bf.asm b/a/asm2bf.asm new file mode 100644 index 00000000..fa99c9c5 --- /dev/null +++ b/a/asm2bf.asm @@ -0,0 +1,12 @@ +STK 2 +ORG 0 + +TXT "Hello World" +DB_ 0 + +@LOOP + RCL R2, R1 + JZ_ R2, 0 + OUT R2 + INC R1 + JMP %LOOPs \ No newline at end of file