Line 1... |
Line 1... |
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
//
|
//
|
// Filename: scopecls.cpp
|
// Filename: scopecls.cpp
|
//
|
//
|
// Project: XuLA2-LX25 SoC based upon the ZipCPU
|
// Project: OpenArty, an entirely open SoC based upon the Arty platform
|
//
|
//
|
// Purpose: After rebuilding the same code over and over again for every
|
// Purpose: After rebuilding the same code over and over again for every
|
// "scope" I tried to interact with, I thought it would be simpler
|
// "scope" I tried to interact with, I thought it would be simpler
|
// to try to make a more generic interface, that other things could plug
|
// to try to make a more generic interface, that other things could plug
|
// into. This is that more generic interface.
|
// into. This is that more generic interface.
|
Line 12... |
Line 12... |
// Creator: Dan Gisselquist, Ph.D.
|
// Creator: Dan Gisselquist, Ph.D.
|
// Gisselquist Technology, LLC
|
// Gisselquist Technology, LLC
|
//
|
//
|
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
//
|
//
|
// Copyright (C) 2015-2016, Gisselquist Technology, LLC
|
// Copyright (C) 2015-2017, Gisselquist Technology, LLC
|
//
|
//
|
// This program is free software (firmware): you can redistribute it and/or
|
// 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
|
// 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
|
// by the Free Software Foundation, either version 3 of the License, or (at
|
// your option) any later version.
|
// your option) any later version.
|
Line 25... |
Line 25... |
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
|
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
// for more details.
|
// for more details.
|
//
|
//
|
// You should have received a copy of the GNU General Public License along
|
// 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
|
// 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
|
// target there if the PDF file isn't present.) If not, see
|
// <http://www.gnu.org/licenses/> for a copy.
|
// <http://www.gnu.org/licenses/> for a copy.
|
//
|
//
|
// License: GPL, v3, as defined and found on www.gnu.org,
|
// License: GPL, v3, as defined and found on www.gnu.org,
|
// http://www.gnu.org/licenses/gpl.html
|
// http://www.gnu.org/licenses/gpl.html
|
Line 93... |
Line 93... |
DEVBUS::BUSW *buf;
|
DEVBUS::BUSW *buf;
|
|
|
buf = new DEVBUS::BUSW[m_scoplen];
|
buf = new DEVBUS::BUSW[m_scoplen];
|
|
|
if (m_vector_read) {
|
if (m_vector_read) {
|
m_fpga->readz(m_addr+1, m_scoplen, buf);
|
m_fpga->readz(m_addr+4, m_scoplen, buf);
|
} else {
|
} else {
|
for(unsigned int i=0; i<m_scoplen; i++)
|
for(unsigned int i=0; i<m_scoplen; i++)
|
buf[i] = m_fpga->readio(m_addr+1);
|
buf[i] = m_fpga->readio(m_addr+4);
|
}
|
}
|
|
|
if(m_compressed) {
|
if(m_compressed) {
|
for(int i=0; i<(int)m_scoplen; i++) {
|
for(int i=0; i<(int)m_scoplen; i++) {
|
if ((buf[i]>>31)&1) {
|
if ((buf[i]>>31)&1) {
|