2016-02-04 10:29:08 +00:00
|
|
|
auto V30MZ::opInString(Size size) {
|
|
|
|
wait(5);
|
Update to v097r24 release.
byuu says:
Changelog:
- WS: fixed bug when IRQs triggered during a rep string instruction
- WS: added sprite attribute caching (per-scanline); absolutely massive
speed-up
- WS: emulated limit of 32 sprites per scanline
- WS: emulated the extended PPU register bit behavior based on the
DISP_CTRL tile bit-depth setting
- WS: added "Rotate" key binding; can be used to flip the WS display
between horizontal and vertical in real-time
The prefix emulation may not be 100% hardware-accurate, but the edge
cases should be extreme enough to not come up in the WS library. No way
to get the emulation 100% down without intensive hardware testing.
trap15 pointed me at a workflow diagram for it, but that diagram is
impossible without a magic internal stack frame that grows with every
IRQ, and can thus grow infinitely large.
The rotation thing isn't exactly the most friendly set-up, but oh well.
I'll see about adding a default rotation setting to manifests, so that
games like GunPey can start in the correct orientation. After that, if
the LCD orientation icon turns out to be reliable, then I'll start using
that. But if there are cases where it's not reliable, then I'll leave it
to manual button presses.
Speaking of icons, I'll need a set of icons to render on the screen.
Going to put them to the top right on vertical orientation, and on the
bottom left for horizontal orientation. Just outside of the video
output, of course.
Overall, WS is getting pretty far along, but still some major bugs in
various games. I really need sound emulation, though. Nobody's going to
use this at all without that.
2016-03-12 13:27:41 +00:00
|
|
|
if(!repeat() || r.cx) {
|
|
|
|
auto data = in(size, r.dx);
|
|
|
|
write(size, r.es, r.di, data);
|
|
|
|
r.di += r.f.d ? -size : size;
|
|
|
|
|
|
|
|
if(!repeat() || !--r.cx) return;
|
2016-02-04 10:29:08 +00:00
|
|
|
|
|
|
|
state.prefix = true;
|
|
|
|
r.ip--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto V30MZ::opOutString(Size size) {
|
|
|
|
wait(6);
|
Update to v097r24 release.
byuu says:
Changelog:
- WS: fixed bug when IRQs triggered during a rep string instruction
- WS: added sprite attribute caching (per-scanline); absolutely massive
speed-up
- WS: emulated limit of 32 sprites per scanline
- WS: emulated the extended PPU register bit behavior based on the
DISP_CTRL tile bit-depth setting
- WS: added "Rotate" key binding; can be used to flip the WS display
between horizontal and vertical in real-time
The prefix emulation may not be 100% hardware-accurate, but the edge
cases should be extreme enough to not come up in the WS library. No way
to get the emulation 100% down without intensive hardware testing.
trap15 pointed me at a workflow diagram for it, but that diagram is
impossible without a magic internal stack frame that grows with every
IRQ, and can thus grow infinitely large.
The rotation thing isn't exactly the most friendly set-up, but oh well.
I'll see about adding a default rotation setting to manifests, so that
games like GunPey can start in the correct orientation. After that, if
the LCD orientation icon turns out to be reliable, then I'll start using
that. But if there are cases where it's not reliable, then I'll leave it
to manual button presses.
Speaking of icons, I'll need a set of icons to render on the screen.
Going to put them to the top right on vertical orientation, and on the
bottom left for horizontal orientation. Just outside of the video
output, of course.
Overall, WS is getting pretty far along, but still some major bugs in
various games. I really need sound emulation, though. Nobody's going to
use this at all without that.
2016-03-12 13:27:41 +00:00
|
|
|
if(!repeat() || r.cx) {
|
|
|
|
auto data = read(size, segment(r.ds), r.si);
|
|
|
|
out(size, r.dx, data);
|
|
|
|
r.si += r.f.d ? -size : size;
|
|
|
|
|
|
|
|
if(!repeat() || !--r.cx) return;
|
2016-02-04 10:29:08 +00:00
|
|
|
|
|
|
|
state.prefix = true;
|
|
|
|
r.ip--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto V30MZ::opMoveString(Size size) {
|
|
|
|
wait(4);
|
Update to v097r24 release.
byuu says:
Changelog:
- WS: fixed bug when IRQs triggered during a rep string instruction
- WS: added sprite attribute caching (per-scanline); absolutely massive
speed-up
- WS: emulated limit of 32 sprites per scanline
- WS: emulated the extended PPU register bit behavior based on the
DISP_CTRL tile bit-depth setting
- WS: added "Rotate" key binding; can be used to flip the WS display
between horizontal and vertical in real-time
The prefix emulation may not be 100% hardware-accurate, but the edge
cases should be extreme enough to not come up in the WS library. No way
to get the emulation 100% down without intensive hardware testing.
trap15 pointed me at a workflow diagram for it, but that diagram is
impossible without a magic internal stack frame that grows with every
IRQ, and can thus grow infinitely large.
The rotation thing isn't exactly the most friendly set-up, but oh well.
I'll see about adding a default rotation setting to manifests, so that
games like GunPey can start in the correct orientation. After that, if
the LCD orientation icon turns out to be reliable, then I'll start using
that. But if there are cases where it's not reliable, then I'll leave it
to manual button presses.
Speaking of icons, I'll need a set of icons to render on the screen.
Going to put them to the top right on vertical orientation, and on the
bottom left for horizontal orientation. Just outside of the video
output, of course.
Overall, WS is getting pretty far along, but still some major bugs in
various games. I really need sound emulation, though. Nobody's going to
use this at all without that.
2016-03-12 13:27:41 +00:00
|
|
|
if(!repeat() || r.cx) {
|
|
|
|
auto data = read(size, segment(r.ds), r.si);
|
|
|
|
write(size, r.es, r.di, data);
|
|
|
|
r.si += r.f.d ? -size : size;
|
|
|
|
r.di += r.f.d ? -size : size;
|
|
|
|
|
|
|
|
if(!repeat() || !--r.cx) return;
|
2016-02-04 10:29:08 +00:00
|
|
|
|
|
|
|
state.prefix = true;
|
|
|
|
r.ip--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto V30MZ::opCompareString(Size size) {
|
|
|
|
wait(5);
|
Update to v097r24 release.
byuu says:
Changelog:
- WS: fixed bug when IRQs triggered during a rep string instruction
- WS: added sprite attribute caching (per-scanline); absolutely massive
speed-up
- WS: emulated limit of 32 sprites per scanline
- WS: emulated the extended PPU register bit behavior based on the
DISP_CTRL tile bit-depth setting
- WS: added "Rotate" key binding; can be used to flip the WS display
between horizontal and vertical in real-time
The prefix emulation may not be 100% hardware-accurate, but the edge
cases should be extreme enough to not come up in the WS library. No way
to get the emulation 100% down without intensive hardware testing.
trap15 pointed me at a workflow diagram for it, but that diagram is
impossible without a magic internal stack frame that grows with every
IRQ, and can thus grow infinitely large.
The rotation thing isn't exactly the most friendly set-up, but oh well.
I'll see about adding a default rotation setting to manifests, so that
games like GunPey can start in the correct orientation. After that, if
the LCD orientation icon turns out to be reliable, then I'll start using
that. But if there are cases where it's not reliable, then I'll leave it
to manual button presses.
Speaking of icons, I'll need a set of icons to render on the screen.
Going to put them to the top right on vertical orientation, and on the
bottom left for horizontal orientation. Just outside of the video
output, of course.
Overall, WS is getting pretty far along, but still some major bugs in
various games. I really need sound emulation, though. Nobody's going to
use this at all without that.
2016-03-12 13:27:41 +00:00
|
|
|
if(!repeat() || r.cx) {
|
|
|
|
auto x = read(size, segment(r.ds), r.si);
|
|
|
|
auto y = read(size, r.es, r.di);
|
|
|
|
r.si += r.f.d ? -size : size;
|
|
|
|
r.di += r.f.d ? -size : size;
|
|
|
|
alSub(size, x, y);
|
|
|
|
|
|
|
|
if(!repeat() || !--r.cx) return;
|
|
|
|
if(repeat() == RepeatWhileZero && r.f.z == 1) return;
|
|
|
|
if(repeat() == RepeatWhileNotZero && r.f.z == 0) return;
|
2016-02-04 10:29:08 +00:00
|
|
|
|
|
|
|
state.prefix = true;
|
|
|
|
r.ip--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto V30MZ::opStoreString(Size size) {
|
|
|
|
wait(2);
|
Update to v097r24 release.
byuu says:
Changelog:
- WS: fixed bug when IRQs triggered during a rep string instruction
- WS: added sprite attribute caching (per-scanline); absolutely massive
speed-up
- WS: emulated limit of 32 sprites per scanline
- WS: emulated the extended PPU register bit behavior based on the
DISP_CTRL tile bit-depth setting
- WS: added "Rotate" key binding; can be used to flip the WS display
between horizontal and vertical in real-time
The prefix emulation may not be 100% hardware-accurate, but the edge
cases should be extreme enough to not come up in the WS library. No way
to get the emulation 100% down without intensive hardware testing.
trap15 pointed me at a workflow diagram for it, but that diagram is
impossible without a magic internal stack frame that grows with every
IRQ, and can thus grow infinitely large.
The rotation thing isn't exactly the most friendly set-up, but oh well.
I'll see about adding a default rotation setting to manifests, so that
games like GunPey can start in the correct orientation. After that, if
the LCD orientation icon turns out to be reliable, then I'll start using
that. But if there are cases where it's not reliable, then I'll leave it
to manual button presses.
Speaking of icons, I'll need a set of icons to render on the screen.
Going to put them to the top right on vertical orientation, and on the
bottom left for horizontal orientation. Just outside of the video
output, of course.
Overall, WS is getting pretty far along, but still some major bugs in
various games. I really need sound emulation, though. Nobody's going to
use this at all without that.
2016-03-12 13:27:41 +00:00
|
|
|
if(!repeat() || r.cx) {
|
|
|
|
write(size, r.es, r.di, getAcc(size));
|
|
|
|
r.di += r.f.d ? -size : size;
|
|
|
|
|
|
|
|
if(!repeat() || !--r.cx) return;
|
2016-02-04 10:29:08 +00:00
|
|
|
|
|
|
|
state.prefix = true;
|
|
|
|
r.ip--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//ac lodsb
|
|
|
|
//ad lodsw
|
|
|
|
auto V30MZ::opLoadString(Size size) {
|
|
|
|
wait(2);
|
Update to v097r24 release.
byuu says:
Changelog:
- WS: fixed bug when IRQs triggered during a rep string instruction
- WS: added sprite attribute caching (per-scanline); absolutely massive
speed-up
- WS: emulated limit of 32 sprites per scanline
- WS: emulated the extended PPU register bit behavior based on the
DISP_CTRL tile bit-depth setting
- WS: added "Rotate" key binding; can be used to flip the WS display
between horizontal and vertical in real-time
The prefix emulation may not be 100% hardware-accurate, but the edge
cases should be extreme enough to not come up in the WS library. No way
to get the emulation 100% down without intensive hardware testing.
trap15 pointed me at a workflow diagram for it, but that diagram is
impossible without a magic internal stack frame that grows with every
IRQ, and can thus grow infinitely large.
The rotation thing isn't exactly the most friendly set-up, but oh well.
I'll see about adding a default rotation setting to manifests, so that
games like GunPey can start in the correct orientation. After that, if
the LCD orientation icon turns out to be reliable, then I'll start using
that. But if there are cases where it's not reliable, then I'll leave it
to manual button presses.
Speaking of icons, I'll need a set of icons to render on the screen.
Going to put them to the top right on vertical orientation, and on the
bottom left for horizontal orientation. Just outside of the video
output, of course.
Overall, WS is getting pretty far along, but still some major bugs in
various games. I really need sound emulation, though. Nobody's going to
use this at all without that.
2016-03-12 13:27:41 +00:00
|
|
|
if(!repeat() || r.cx) {
|
|
|
|
setAcc(size, read(size, segment(r.ds), r.si));
|
|
|
|
r.si += r.f.d ? -size : size;
|
|
|
|
|
|
|
|
if(!repeat() || !--r.cx) return;
|
2016-02-04 10:29:08 +00:00
|
|
|
|
|
|
|
state.prefix = true;
|
|
|
|
r.ip--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//ae scasb
|
|
|
|
//af scasw
|
|
|
|
auto V30MZ::opScanString(Size size) {
|
|
|
|
wait(3);
|
Update to v097r24 release.
byuu says:
Changelog:
- WS: fixed bug when IRQs triggered during a rep string instruction
- WS: added sprite attribute caching (per-scanline); absolutely massive
speed-up
- WS: emulated limit of 32 sprites per scanline
- WS: emulated the extended PPU register bit behavior based on the
DISP_CTRL tile bit-depth setting
- WS: added "Rotate" key binding; can be used to flip the WS display
between horizontal and vertical in real-time
The prefix emulation may not be 100% hardware-accurate, but the edge
cases should be extreme enough to not come up in the WS library. No way
to get the emulation 100% down without intensive hardware testing.
trap15 pointed me at a workflow diagram for it, but that diagram is
impossible without a magic internal stack frame that grows with every
IRQ, and can thus grow infinitely large.
The rotation thing isn't exactly the most friendly set-up, but oh well.
I'll see about adding a default rotation setting to manifests, so that
games like GunPey can start in the correct orientation. After that, if
the LCD orientation icon turns out to be reliable, then I'll start using
that. But if there are cases where it's not reliable, then I'll leave it
to manual button presses.
Speaking of icons, I'll need a set of icons to render on the screen.
Going to put them to the top right on vertical orientation, and on the
bottom left for horizontal orientation. Just outside of the video
output, of course.
Overall, WS is getting pretty far along, but still some major bugs in
various games. I really need sound emulation, though. Nobody's going to
use this at all without that.
2016-03-12 13:27:41 +00:00
|
|
|
if(!repeat() || r.cx) {
|
|
|
|
auto x = getAcc(size);
|
|
|
|
auto y = read(size, r.es, r.di);
|
|
|
|
r.di += r.f.d ? -size : size;
|
|
|
|
alSub(size, x, y);
|
|
|
|
|
|
|
|
if(!repeat() || !--r.cx) return;
|
|
|
|
if(repeat() == RepeatWhileZero && r.f.z == 1) return;
|
|
|
|
if(repeat() == RepeatWhileNotZero && r.f.z == 0) return;
|
2016-02-04 10:29:08 +00:00
|
|
|
|
|
|
|
state.prefix = true;
|
|
|
|
r.ip--;
|
|
|
|
}
|
|
|
|
}
|