From ce3c459dad4d9b8f51962a14f092f672f139e600 Mon Sep 17 00:00:00 2001 From: Roland Heyder Date: Thu, 14 Oct 2021 00:17:35 +0200 Subject: [PATCH] Implements the _Bin$ function Usage is analog to the legacy OCT$ and HEX$ functions. --- CHANGELOG.md | 2 +- internal/c/libqb.cpp | 87 +++++++++++++++++-- internal/c/qbx.cpp | 2 + source/qb64.bas | 38 ++++++-- source/subs_functions/subs_functions.bas | 10 +++ .../syntax_highlighter_list.bas | 2 +- 6 files changed, 123 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c14c3748c..e702a7de9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## New features ### All platforms -- +- Implemented the `_Bin$` function as counterpart to `&B` prefixed number strings. Usage is analog to the legacy OCT$ and HEX$ functions.