Copyright (C) 2024 Takym.
独自設計の仮想機械です。 名称に特に深い意味はありません。乱数を使って生成しました。
- ビルドしてから起動する場合
> wsl $ ./run.sh <引数>
- ビルドせずに起動する場合
> wsl $ ./vuuzwaail.elf <引数>
- デバッグする場合
> wsl $ ./debug.sh (gdb) run <引数>
- ビルドのみを行う場合
> wsl $ ./build.sh
Vuuzwaail は部品単位で管理されます。 部品は分割不可能であり、単一の機能を持ちます。
DEVACT
- Device Action (Component.run
)IN
- Input (Component.receive
)OUT
- Output (Component.send
)
- 拡張子:
*.vzwldev;*.vcd
位置 | 名前 | 型 | 値 |
---|---|---|---|
+00 | header |
CustomDeviceHeader |
ファイルのメタ情報 |
+40 | payload |
uint8_t[] |
ファイルの内容 |
位置 | 名前 | 型 | 値 |
---|---|---|---|
+00 | signature |
uint32_t |
常に 0x4C575A56 (VZWL) |
+04 | formatVersion |
uint32_t |
常に 0 |
+08 | systemVersion |
SystemVersion |
Vuuzwaail のバージョン |
+10 | commandAddress |
uint32_t |
ファイル内における起動コマンドの位置から 0x40 を差し引いた値 |
+14 | commandLength |
uint32_t |
ファイル内における起動コマンドの長さ |
+18 | sendingBufferAddress |
uint32_t |
ファイル内における送信バッファの位置から 0x40 を差し引いた値 |
+1C | sendingBufferSize |
uint32_t |
ファイル内における送信バッファの容量 |
+20 | receivingBufferAddress |
uint32_t |
ファイル内における受信バッファの位置から 0x40 を差し引いた値 |
+24 | receivingBufferSize |
uint32_t |
ファイル内における受信バッファの容量 |
+28 | reserved |
uint8_t[24] |
予約済み(全て 0xFF で埋める) |
位置 | 名前 | 型 | 値 |
---|---|---|---|
+00 | major |
uint16_t |
Vuuzwaail のバージョン |
+02 | minor |
uint16_t |
Vuuzwaail のバージョン |
+04 | patch |
uint16_t |
Vuuzwaail のバージョン |
+06 | build |
uint16_t |
Vuuzwaail のバージョン |
位置 | 名前 | 型 | 値 |
---|---|---|---|
+00 | type |
BufferType |
バッファの種類 |
+01 | reserved |
uint8_t[7] |
予約済み(全て 0xFF で埋める) |
+08 | readPosition |
int32_t |
読み取り位置 |
+0C | writePosition |
int32_t |
書き込み位置 |
+10 | data |
int32_t[] |
データ |
typedef uint8_t BufferType;
名前 | 値 |
---|---|
VZWL_BUFFER_TYPE_NOT_SUPPORTED |
0x00 |
VZWL_BUFFER_TYPE_QUEUE |
0x01 |
VZWL_BUFFER_TYPE_STACK |
0x02 |
VZWL_BUFFER_TYPE_RANDOM |
0x03 |
wsl -v
WSL バージョン: 2.3.24.0 カーネル バージョン: 5.15.153.1-2 WSLg バージョン: 1.0.65 MSRDC バージョン: 1.2.5620 Direct3D バージョン: 1.611.1-81528511 DXCore バージョン: 10.0.26100.1-240331-1435.ge-release Windows バージョン: 10.0.19045.5011
lsb_release -a
No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 24.04.1 LTS Release: 24.04 Codename: noble
bash --version
GNU bash, バージョン 5.2.21(1)-release (x86_64-pc-linux-gnu) Copyright (C) 2022 Free Software Foundation, Inc. ライセンス GPLv3+: GNU GPL バージョン 3 またはそれ以降 <http://gnu.org/licenses/gpl.html> This is free software; you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
g++ -v
Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa OFFLOAD_TARGET_DEFAULT=1 Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.2.0-23ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-uJ7kn6/gcc-13-13.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix Supported LTO compression algorithms: zlib zstd gcc version 13.2.0 (Ubuntu 13.2.0-23ubuntu4)
gdb -v
GNU gdb (Ubuntu 15.0.50.20240403-0ubuntu1) 15.0.50.20240403-git Copyright (C) 2024 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
ld -v
GNU ld (GNU Binutils for Ubuntu) 2.42
このプログラムはMITライセンスに基づいて配布されています。