| VCF Southeast | Aug 01 - 02, 2026, | Atlanta, GA |
| VCF West | Aug 01 - 02, 2026, | Mountain View, CA |
| VCF Midwest | Sep 12 - 13, 2026, | Schaumburg Convention Center, IL |
| VCF Montreal V2.0 | Nov 07 - 08, 2026, | Saint-Lambert, Montreal, Canada |
| VCF SoCal | TBD, 2027, | Southern CA |
| VCF East | TBD, 2027, | InfoAge, Wall, NJ |
| VCF Latam | TBD, 2027, | Bahía Blanca, Argentina |
| VCF Pac. NW | TBD , 2027, | Tukwila, WA |
| VCF Southwest | TBD, 2027, | Westin Dallas Fort Worth Airport |




Latest devel drop:I don't yet see a binary available with the new commits under releases
Not yet, but I keep it in mind. Currently there are a lot of VT100 ESC sequences all over the code, so they must all be tranformed to function call like "setxy(X,Y)" etc. I've already started - there are e.g. "clrscr()", "set_invers()", "set_normal()", "show_cursor()" and "hide_cursor()". I would go for version 1.3.Also, is there a plan to support other terminal standards? The ADM-3A seems to be fairly widely supported in applications, and the CP/M emulator in Fuzix provides VT52, for example.
Is there no way to link the cross-assembled code against Microsoft or SLR libraries? All of these problems were solved years ago by the O.G. NZCOM folks. VLIB has low-level intrinsics that abstract everything neatly.Latest devel drop:
Not yet, but I keep it in mind. Currently there are a lot of VT100 ESC sequences all over the code, so they must all be tranformed to function call like "setxy(X,Y)" etc. I've already started - there are e.g. "clrscr()", "set_invers()", "set_normal()", "show_cursor()" and "hide_cursor()". I would go for version 1.3.
Martin
I already thought about using digits, I will check how it works with my command line interface.FileCommander for CP/M by Heiko Poppe uses the number keys (0-9) instead of function keys ...
Setting up the z88dk toolchain can be a bit of a journey.
git clone https://github.com/z88dk/z88dk.gitcd z88dksh make.shMAKEDEB.sh that uses the quick'n'dirty tool checkinstall to build a *.deb package from source code using the classical three-step ./configure; make; make install:#!/bin/sh# build a debian package for z88dk
export BUILD_SDCC=1
sudo checkinstall \
--pkgversion=$(git describe --tags | sed s/^[[:alpha:]]*//) \
--pkglicense="Clarified Artistic License" \
--pkggroup=development \
--backup=no \
--install=no \
--fstrans=no \
--exclude=/root,/home
unset BUILD_SDCC
sudo chown -R horo:horo *
sudo apt install ./z88dk*.deb