URL
https://opencores.org/ocsvn/zipcpu/zipcpu/trunk
Subversion Repositories zipcpu
[/] [zipcpu/] [trunk/] [bench/] [cpp/] [memsim.h] - Rev 39
Go to most recent revision | Compare with Previous | Blame | View Log
//////////////////////////////////////////////////////////////////////////////// // // Filename: memsim.h // // Project: Zip CPU -- a small, lightweight, RISC CPU core // // Purpose: This creates a memory like device to act on a WISHBONE bus. // It doesn't exercise the bus thoroughly, but does give some // exercise to the bus to see whether or not the bus master // can control it. // // // Creator: Dan Gisselquist, Ph.D. // Gisselquist Tecnology, LLC // //////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2015, Gisselquist Technology, LLC // // This program is free software (firmware): you can redistribute it and/or // modify it under the terms of the GNU General Public License as published // by the Free Software Foundation, either version 3 of the License, or (at // your option) any later version. // // This program is distributed in the hope that it will be useful, but WITHOUT // ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License // for more details. // // You should have received a copy of the GNU General Public License along // with this program. (It's in the $(ROOT)/doc directory, run make with no // target there if the PDF file isn't present.) If not, see // <http://www.gnu.org/licenses/> for a copy. // // License: GPL, v3, as defined and found on www.gnu.org, // http://www.gnu.org/licenses/gpl.html // // //////////////////////////////////////////////////////////////////////////////// #ifndef MEMSIM_H #define MEMSIM_H class MEMSIM { public: typedef unsigned int BUSW; typedef unsigned char uchar; BUSW *m_mem, m_len, m_mask; MEMSIM(const unsigned int nwords); ~MEMSIM(void); void load(const char *fname); void apply(const unsigned clk, const uchar wb_cyc, const uchar wb_stb, const uchar wb_we, const BUSW wb_addr, const BUSW wb_data, uchar &o_ack, uchar &o_stall, BUSW &o_data); void operator()(const unsigned clk, const uchar wb_cyc, const uchar wb_stb, const uchar wb_we, const BUSW wb_addr, const BUSW wb_data, uchar &o_ack, uchar &o_stall, BUSW &o_data) { apply(clk, wb_cyc, wb_stb, wb_we, wb_addr, wb_data, o_ack, o_stall, o_data); } BUSW &operator[](const BUSW addr) { return m_mem[addr&m_mask]; } }; #endif
Go to most recent revision | Compare with Previous | Blame | View Log