From 9178090aee3e3c96edd9c7a66fe32a84845c301e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Teo=20Samar=C5=BEija?= Date: Thu, 19 Aug 2021 18:56:43 +0200 Subject: [PATCH] Fixed a broken link in README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 92f6e92..78b1fd5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # AEC for WebAssembly -![Logo](logo.png) +![Logo](logo.PNG) This is my attempt to port the [ArithmeticExpressionCompiler](https://github.com/FlatAssembler/ArithmeticExpressionCompiler) language to WebAssembly (the JavaScript bytecode). The compiler has been rewritten from scratch in C++ (the original compiler was written in a combination of C and JavaScript, using the Duktape framework). Right now, it's about as powerful as more powerful than the original compiler (targeting x86 assembly), as it includes support for more data types, including the support for structures. The specification for the ArithmeticExpressionCompiler language is (hopefully) available on [my website](https://flatassembler.github.io/AEC_specification.html).