From 9d46df7ae76533833c26df9f0b0bf24e086c25b2 Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Thu, 19 Jul 2001 00:24:23 +0000 Subject: cond bp support --- mixlib/xmix_vm.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mixlib/xmix_vm.h') diff --git a/mixlib/xmix_vm.h b/mixlib/xmix_vm.h index d5cbff4..4ed1e42 100644 --- a/mixlib/xmix_vm.h +++ b/mixlib/xmix_vm.h @@ -29,6 +29,7 @@ #include "mix_symbol_table.h" #include "mix_device.h" #include "mix_src_file.h" +#include "mix_predicate_list.h" #include "mix_vm.h" /* The mix_vm_t type */ @@ -50,6 +51,7 @@ struct mix_vm_t mix_symbol_table_t *symbol_table; mix_src_file_t *src_file; /* source of last loaded code file */ mix_device_factory_t factory; /* the factory for new devices */ + mix_predicate_list_t *pred_list; /* predicates for conditional bps */ }; /* Macros for accessing/modifying the above structure. @@ -72,6 +74,7 @@ enum { A_ = 0, X_, J_, I1_, I2_, I3_, I4_, I5_, I6_ }; #define get_over_(vm) (vm->overflow) #define get_loc_(vm) (vm->loc_count) #define get_clock_(vm) (vm->clock) +#define get_pred_list_(vm) (vm->pred_list) #define set_reg_(vm,r,x) \ do { \ -- cgit v1.2.3