--- nono/hd64180/hd64180acc.cpp 2026/04/29 17:05:21 1.1.1.2 +++ nono/hd64180/hd64180acc.cpp 2026/04/29 17:05:34 1.1.1.3 @@ -278,6 +278,16 @@ hd64180acc::sra_8(uint32 src) // S:* Z:* H:0 P:* N:0 C:* uint32 +hd64180acc::sll_8(uint32 src) +{ + // bit0 に %1 が入るようだ + // http://www.z80.info/z80sflag.htm + CZ = (src << 1) | 1; + return in_8(Z); +} + +// S:* Z:* H:0 P:* N:0 C:* +uint32 hd64180acc::srl_8(uint32 src) { C = src;