This commit is contained in:
georgemoralis 2023-10-09 16:54:10 +03:00
parent bc6b740ffe
commit 1e18efcd05
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
v0.0.2 not yet released WIP
===========================
-using cstdint header in variable types
-run_main_entry: Rewrite in asm for stack setup
-printf libc implementation for work with sysv_abi
v0.0.1 29/09/2023 v0.0.1 29/09/2023
================= =================
First public release . Everything is new First public release . Everything is new

View File

@ -3,5 +3,5 @@
#include <string_view> #include <string_view>
namespace Emulator { namespace Emulator {
constexpr char VERSION[] = "0.0.1"; constexpr char VERSION[] = "0.0.2 WIP";
} }