From f6959ba09ef1b55d4b7b6f7efd29217e132ca2bf Mon Sep 17 00:00:00 2001 From: steve Date: Sat, 8 Apr 2000 05:49:59 +0000 Subject: [PATCH] Fix memory object compile problems. --- vvm/vvm_gates.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/vvm/vvm_gates.h b/vvm/vvm_gates.h index 81d70ff4d..f9359dc06 100644 --- a/vvm/vvm_gates.h +++ b/vvm/vvm_gates.h @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) && !defined(macintosh) -#ident "$Id: vvm_gates.h,v 1.54 2000/04/01 21:40:23 steve Exp $" +#ident "$Id: vvm_gates.h,v 1.55 2000/04/08 05:49:59 steve Exp $" #endif # include "vvm.h" @@ -516,8 +516,8 @@ class vvm_ram_dq : protected vvm_ram_callback, public vvm_nexus::recvr_t { } void send_out_() - { vpip_bit_t*ov_bits[WIDTH]; - vvm_bitset_t ov(bits, WIDTH); + { vpip_bit_t ov_bits[WIDTH]; + vvm_bitset_t ov(ov_bits, WIDTH); mem_->get_word(addr_val_, ov); for (unsigned bit = 0 ; bit < WIDTH ; bit += 1) { vvm_out_event*ev = new vvm_out_event(ov[bit], out_+bit); @@ -867,6 +867,9 @@ template class vvm_pevent : public vvm_nexus::recvr_t { /* * $Log: vvm_gates.h,v $ + * Revision 1.55 2000/04/08 05:49:59 steve + * Fix memory object compile problems. + * * Revision 1.54 2000/04/01 21:40:23 steve * Add support for integer division. *