1
0
mirror of https://github.com/simh/simh.git synced 2026-04-30 05:25:05 +00:00

SCP: Enhanced ASSERT/IF to support expressions which test memory contents. Also enhanced EXAMINE's search capabilities to be able to match multi-byte patterns for VMs which are byte addressable.

This commit is contained in:
Mark Pizzolato
2014-12-25 06:19:59 -08:00
parent 47a0576f09
commit 1d530cc48d
2 changed files with 223 additions and 78 deletions

View File

@@ -632,8 +632,9 @@ struct sim_mtab {
struct sim_schtab {
int32 logic; /* logical operator */
int32 boolop; /* boolean operator */
t_value mask; /* mask for logical */
t_value comp; /* comparison for boolean */
uint32 count; /* value count in mask and comp arrays */
t_value *mask; /* mask for logical */
t_value *comp; /* comparison for boolean */
};
/* Breakpoint table */