--- nono/vm/iodevstream.h 2026/04/29 17:05:28 1.1.1.5 +++ nono/vm/iodevstream.h 2026/04/29 17:05:33 1.1.1.6 @@ -62,6 +62,12 @@ class IODeviceStream WriteN(BusAddr::Size2, data); } + // 3バイト書き込んでポインタを進める。addr はアラインしてなくてよい + void Write3(uint32 data) + { + WriteN(BusAddr::Size3, data); + } + // 4バイト書き込んでポインタを進める。addr はアラインしてなくてよい void Write4(uint32 data) {