1
0
mirror of https://github.com/wfjm/w11.git synced 2026-03-05 11:14:50 +00:00

correct spelling

This commit is contained in:
Walter F.J. Mueller
2017-04-30 15:33:23 +02:00
parent ed4988d0e4
commit 3d3035eb96
27 changed files with 88 additions and 81 deletions

View File

@@ -22,12 +22,19 @@ The full set of tests is only run for tagged releases.
- no loopback
- no memory access error checking
- works with 211bsd, ping and telnet login tested
- DEUNA and nexys3 shows rlink aborts
- unlikely that it's a DEUNA issue
- more likely this revealed a hidden flaw in the fx2 based transport
- all works fine with nexys4 !
- RSX11-M uses buffer chaining, will not work
### Summary
- re-arrange rawio commands for rlc and rlp
- RtclRlink(Connect|Port): drop M_rawio; add M_rawread,M_rawrblk,M_rawwblk
- RtclRlinkPort: LogFileName(): returns now const std::string&
- BUGFIXes for backend
- RlinkPort: BUGFIX: RawRead(): proper irc for exactsize=false
- Rexception: BUGFIX: add fErrtxt for proper what() return
- sys_w11a_n(2|3): use SWI(7:6) to allow fx2 debug via LEDs
- BUGFIX: resolve hangup of fx2 USB controller
- was caused by inconsistent use of rx fifo thresholds
- adding more lines to monitor output (fsm_* lines for state tracking)
- refurbish dmcmon
- has now the sta,sto,sus,res logic as rbmon and ibmon
- does not depend on full state number generation anymore

View File

@@ -1,4 +1,4 @@
-- $Id: tb_nexys2_fusp.vhd 805 2016-09-03 08:09:52Z mueller $
-- $Id: tb_nexys2_fusp.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2010-2016 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -152,7 +152,7 @@ begin
TX_ENA => RXVAL
);
RX_HOLD <= TXBUSY or RTS_N; -- back preasure for data flow to tb
RX_HOLD <= TXBUSY or RTS_N; -- back pressure for data flow to tb
N2CORE : entity work.tb_nexys2_core
port map (

View File

@@ -1,4 +1,4 @@
-- $Id: tb_nexys3_fusp.vhd 805 2016-09-03 08:09:52Z mueller $
-- $Id: tb_nexys3_fusp.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2011-2016 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -152,7 +152,7 @@ begin
TX_ENA => RXVAL
);
RX_HOLD <= TXBUSY or RTS_N; -- back preasure for data flow to tb
RX_HOLD <= TXBUSY or RTS_N; -- back pressure for data flow to tb
N3CORE : entity work.tb_nexys3_core
port map (

View File

@@ -1,4 +1,4 @@
-- $Id: tb_s3board_fusp.vhd 805 2016-09-03 08:09:52Z mueller $
-- $Id: tb_s3board_fusp.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2010-2016 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -131,7 +131,7 @@ begin
TX_ENA => RXVAL
);
RX_HOLD <= TXBUSY or RTS_N; -- back preasure for data flow to tb
RX_HOLD <= TXBUSY or RTS_N; -- back pressure for data flow to tb
S3CORE : entity work.tb_s3board_core
port map (

View File

@@ -1,4 +1,4 @@
-- $Id: sysmon_rbus_core.vhd 784 2016-07-09 22:17:01Z mueller $
-- $Id: sysmon_rbus_core.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2016- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -203,7 +203,7 @@ begin
irbena := RB_MREQ.re or RB_MREQ.we;
-- check for internal rbus controler register window
-- check for internal rbus controller register window
irb_addr_int := '0';
if RB_MREQ.addr(DAWIDTH-1 downto 3) = IBASE(DAWIDTH-1 downto 3) then
irb_addr_int := '1';

View File

@@ -1,4 +1,4 @@
-- $Id: sys_tst_rlink_arty.vhd 758 2016-04-02 18:01:39Z mueller $
-- $Id: sys_tst_rlink_arty.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2016- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -56,9 +56,9 @@
-- SWI(1): -unused-
-- SWI(0): -unused-
--
-- LED(3): not SER_MONI.txok (shows tx back preasure)
-- LED(3): not SER_MONI.txok (shows tx back pressure)
-- LED(2): SER_MONI.txact (shows tx activity)
-- LED(1): not SER_MONI.rxok (shows rx back preasure)
-- LED(1): not SER_MONI.rxok (shows rx back pressure)
-- LED(0): SER_MONI.rxact (shows rx activity)
--

View File

@@ -1,4 +1,4 @@
-- $Id: sys_tst_rlink_b3.vhd 758 2016-04-02 18:01:39Z mueller $
-- $Id: sys_tst_rlink_b3.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2015-2016 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -58,9 +58,9 @@
-- LED(0): timer 0 busy
--
-- DSP: SER_MONI.clkdiv (from auto bauder)
-- DP(3): not SER_MONI.txok (shows tx back preasure)
-- DP(3): not SER_MONI.txok (shows tx back pressure)
-- DP(2): SER_MONI.txact (shows tx activity)
-- DP(1): not SER_MONI.rxok (shows rx back preasure)
-- DP(1): not SER_MONI.rxok (shows rx back pressure)
-- DP(0): SER_MONI.rxact (shows rx activity)
--

View File

@@ -1,4 +1,4 @@
-- $Id: sys_tst_rlink_n2.vhd 748 2016-03-20 15:18:50Z mueller $
-- $Id: sys_tst_rlink_n2.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2010-2016 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -68,9 +68,9 @@
-- (0) timer 0 busy
--
-- DSP: SER_MONI.clkdiv (from auto bauder)
-- DP(3) not SER_MONI.txok (shows tx back preasure)
-- DP(3) not SER_MONI.txok (shows tx back pressure)
-- (2) SER_MONI.txact (shows tx activity)
-- (1) not SER_MONI.rxok (shows rx back preasure)
-- (1) not SER_MONI.rxok (shows rx back pressure)
-- (0) SER_MONI.rxact (shows rx activity)
--

View File

@@ -1,4 +1,4 @@
-- $Id: sys_tst_rlink_n3.vhd 748 2016-03-20 15:18:50Z mueller $
-- $Id: sys_tst_rlink_n3.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2011-2016 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -60,9 +60,9 @@
-- LED(0): timer 0 busy
--
-- DSP: SER_MONI.clkdiv (from auto bauder)
-- DP(3): not SER_MONI.txok (shows tx back preasure)
-- DP(3): not SER_MONI.txok (shows tx back pressure)
-- DP(2): SER_MONI.txact (shows tx activity)
-- DP(1): not SER_MONI.rxok (shows rx back preasure)
-- DP(1): not SER_MONI.rxok (shows rx back pressure)
-- DP(0): SER_MONI.rxact (shows rx activity)
--

View File

@@ -1,4 +1,4 @@
-- $Id: sys_tst_rlink_n4.vhd 772 2016-06-05 12:55:11Z mueller $
-- $Id: sys_tst_rlink_n4.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2013-2016 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -68,9 +68,9 @@
-- LED(0): timer 0 busy
--
-- DSP: SER_MONI.clkdiv (from auto bauder)
-- DP(3): not SER_MONI.txok (shows tx back preasure)
-- DP(3): not SER_MONI.txok (shows tx back pressure)
-- DP(2): SER_MONI.txact (shows tx activity)
-- DP(1): not SER_MONI.rxok (shows rx back preasure)
-- DP(1): not SER_MONI.rxok (shows rx back pressure)
-- DP(0): SER_MONI.rxact (shows rx activity)
--

View File

@@ -1,4 +1,4 @@
-- $Id: sys_tst_rlink_n4d.vhd 839 2017-01-04 21:34:04Z mueller $
-- $Id: sys_tst_rlink_n4d.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2017- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -68,9 +68,9 @@
-- LED(0): timer 0 busy
--
-- DSP: SER_MONI.clkdiv (from auto bauder)
-- DP(3): not SER_MONI.txok (shows tx back preasure)
-- DP(3): not SER_MONI.txok (shows tx back pressure)
-- DP(2): SER_MONI.txact (shows tx activity)
-- DP(1): not SER_MONI.rxok (shows rx back preasure)
-- DP(1): not SER_MONI.rxok (shows rx back pressure)
-- DP(0): SER_MONI.rxact (shows rx activity)
--

View File

@@ -1,4 +1,4 @@
-- $Id: sys_tst_rlink_s3.vhd 748 2016-03-20 15:18:50Z mueller $
-- $Id: sys_tst_rlink_s3.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2011-2016 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -55,9 +55,9 @@
-- LED(0): timer 0 busy
--
-- DSP: SER_MONI.clkdiv (from auto bauder)
-- DP(3): not SER_MONI.txok (shows tx back preasure)
-- DP(3): not SER_MONI.txok (shows tx back pressure)
-- DP(2): SER_MONI.txact (shows tx activity)
-- DP(1): not SER_MONI.rxok (shows rx back preasure)
-- DP(1): not SER_MONI.rxok (shows rx back pressure)
-- DP(0): SER_MONI.rxact (shows rx activity)
--

View File

@@ -1,4 +1,4 @@
-- $Id: sys_tst_rlink_cuff_atlys.vhd 734 2016-02-20 22:43:20Z mueller $
-- $Id: sys_tst_rlink_cuff_atlys.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2013-2015 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -56,12 +56,12 @@
--
-- DSP: SER_MONI.clkdiv (from auto bauder)
-- for SWI(2)='0' (serport)
-- DP(3) not SER_MONI.txok (shows tx back preasure)
-- DP(3) not SER_MONI.txok (shows tx back pressure)
-- (2) SER_MONI.txact (shows tx activity)
-- (1) not SER_MONI.rxok (shows rx back preasure)
-- (1) not SER_MONI.rxok (shows rx back pressure)
-- (0) SER_MONI.rxact (shows rx activity)
-- for SWI(2)='1' (fx2)
-- DP(3) FX2_TX2BUSY (shows tx2 back preasure)
-- DP(3) FX2_TX2BUSY (shows tx2 back pressure)
-- (2) FX2_TX2ENA(stretched) (shows tx2 activity)
-- (1) FX2_TXENA(streched) (shows tx activity)
-- (0) FX2_RXVAL(stretched) (shows rx activity)

View File

@@ -1,4 +1,4 @@
-- $Id: sys_tst_rlink_cuff_n2.vhd 734 2016-02-20 22:43:20Z mueller $
-- $Id: sys_tst_rlink_cuff_n2.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2012-2015 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -61,12 +61,12 @@
--
-- DSP: SER_MONI.clkdiv (from auto bauder)
-- for SWI(2)='0' (serport)
-- DP(3) not SER_MONI.txok (shows tx back preasure)
-- DP(3) not SER_MONI.txok (shows tx back pressure)
-- (2) SER_MONI.txact (shows tx activity)
-- (1) not SER_MONI.rxok (shows rx back preasure)
-- (1) not SER_MONI.rxok (shows rx back pressure)
-- (0) SER_MONI.rxact (shows rx activity)
-- for SWI(2)='1' (fx2)
-- DP(3) FX2_TX2BUSY (shows tx2 back preasure)
-- DP(3) FX2_TX2BUSY (shows tx2 back pressure)
-- (2) FX2_TX2ENA(stretched) (shows tx2 activity)
-- (1) FX2_TXENA(streched) (shows tx activity)
-- (0) FX2_RXVAL(stretched) (shows rx activity)

View File

@@ -1,4 +1,4 @@
-- $Id: sys_tst_rlink_cuff_n3.vhd 734 2016-02-20 22:43:20Z mueller $
-- $Id: sys_tst_rlink_cuff_n3.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2013-2015 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -58,12 +58,12 @@
--
-- DSP: SER_MONI.clkdiv (from auto bauder)
-- for SWI(2)='0' (serport)
-- DP(3) not SER_MONI.txok (shows tx back preasure)
-- DP(3) not SER_MONI.txok (shows tx back pressure)
-- (2) SER_MONI.txact (shows tx activity)
-- (1) not SER_MONI.rxok (shows rx back preasure)
-- (1) not SER_MONI.rxok (shows rx back pressure)
-- (0) SER_MONI.rxact (shows rx activity)
-- for SWI(2)='1' (fx2)
-- DP(3) FX2_TX2BUSY (shows tx2 back preasure)
-- DP(3) FX2_TX2BUSY (shows tx2 back pressure)
-- (2) FX2_TX2ENA(stretched) (shows tx2 activity)
-- (1) FX2_TXENA(streched) (shows tx activity)
-- (0) FX2_RXVAL(stretched) (shows rx activity)

View File

@@ -1,4 +1,4 @@
-- $Id: tst_serloop_hiomap.vhd 751 2016-03-25 19:46:11Z mueller $
-- $Id: tst_serloop_hiomap.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2011- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -54,7 +54,7 @@
-- (4) rxoecnt > 0 (overrun error)
-- (3) rxsecnt > 0 (sequence error)
-- (2) abact (shows ab activity)
-- (1) (not rxok) or (not txok) (shows back preasure)
-- (1) (not rxok) or (not txok) (shows back pressure)
-- (0) rxact or txact (shows activity)
--
-- DSP data as selected by SWI(7:4)
@@ -70,9 +70,9 @@
-- 1010 -> rxuicnt,rxuidat
-- 1111 -> abclkdiv
--
-- DP(3): not SER_MONI.txok (shows tx back preasure)
-- DP(3): not SER_MONI.txok (shows tx back pressure)
-- (2): SER_MONI.txact (shows tx activity)
-- (1): not SER_MONI.rxok (shows rx back preasure)
-- (1): not SER_MONI.rxok (shows rx back pressure)
-- (0): SER_MONI.rxact (shows rx activity)
--
@@ -202,9 +202,9 @@ begin
-- setup display decimal points
idp(3) := not SER_MONI.txok; -- tx back preasure
idp(3) := not SER_MONI.txok; -- tx back pressure
idp(2) := SER_MONI.txact; -- tx activity
idp(1) := not SER_MONI.rxok; -- rx back preasure
idp(1) := not SER_MONI.rxok; -- rx back pressure
idp(0) := SER_MONI.rxact; -- rx activity
N_REGS <= n;

View File

@@ -1,4 +1,4 @@
-- $Id: sys_tst_sram_s3.vhd 791 2016-07-21 22:01:10Z mueller $
-- $Id: sys_tst_sram_s3.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2007-2016 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -58,7 +58,7 @@
-- 2010-10-23 335 2.0.4 rename RRI_LAM->RB_LAM;
-- 2010-06-03 300 2.0.3 use default FAWIDTH for rri_core_serport
-- 2010-05-32 294 2.0.2 rename sys_tst_sram -> sys_tst_sram_s3
-- 2010-05-21 292 2.0.1 move memory controler to top level entity
-- 2010-05-21 292 2.0.1 move memory controller to top level entity
-- 2010-05-16 291 2.0 move tester code to tst_sram; use s3_rs232_iob_int
-- 2010-05-02 287 1.1.6 ren CE_XSEC->CE_INT,RP_STAT->RB_STAT,AP_LAM->RB_LAM
-- drop RP_IINT from interfaces; drop RTSFLUSH generic

View File

@@ -1,4 +1,4 @@
-- $Id: tst_sram.vhd 785 2016-07-10 12:22:41Z mueller $
-- $Id: tst_sram.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2007-2016 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -40,7 +40,7 @@
-- 2010-06-18 306 1.1.2 rename rbus data fields to _rbf_
-- 2010-06-03 299 1.1.1 correct rbus init logic (use we, RB_ADDR)
-- 2010-05-24 294 1.1 Correct _al->_dl logic, remove BUSY=0 condition
-- 2010-05-21 292 1.0.1 move memory controler to top level entity
-- 2010-05-21 292 1.0.1 move memory controller to top level entity
-- 2010-05-16 291 1.0 Initial version (extracted from sys_tst_sram)
-- now RB_SRES only driven when selected
------------------------------------------------------------------------------
@@ -147,9 +147,9 @@
--
-- DSP: data as selected by SWI(7..4)
--
-- DP(3): not SER_MONI.txok (shows tx back preasure)
-- DP(3): not SER_MONI.txok (shows tx back pressure)
-- DP(2): SER_MONI.txact (shows tx activity)
-- DP(1): not SER_MONI.rxok (shows rx back preasure)
-- DP(1): not SER_MONI.rxok (shows rx back pressure)
-- DP(0): SER_MONI.rxact (shows rx activity)
--

View File

@@ -1,4 +1,4 @@
-- $Id: pdp11_hio70_arty.vhd 737 2016-02-28 09:07:18Z mueller $
-- $Id: pdp11_hio70_arty.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2016- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -28,9 +28,9 @@
-- collects the output for LED and RGB leds
-- MODE = 00xy
-- LED IO activity
-- (3) not SER_MONI.txok (shows tx back preasure)
-- (3) not SER_MONI.txok (shows tx back pressure)
-- (2) SER_MONI.txact (shows tx activity)
-- (1) not SER_MONI.rxok (shows rx back preasure)
-- (1) not SER_MONI.rxok (shows rx back pressure)
-- (0) SER_MONI.rxact (shows rx activity)
-- RGB_G CPU busy (active cpugo=1, enabled with y=1)
-- (3) kernel mode, non-wait, pri>0

View File

@@ -1,4 +1,4 @@
-- $Id: sys_w11a_br_arty.vhd 883 2017-04-22 11:57:38Z mueller $
-- $Id: sys_w11a_br_arty.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2016-2017 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -74,9 +74,9 @@
--
-- LED and RGB assignment for SWI=00xy
-- LED IO activity
-- (3) not SER_MONI.txok (shows tx back preasure)
-- (3) not SER_MONI.txok (shows tx back pressure)
-- (2) SER_MONI.txact (shows tx activity)
-- (1) not SER_MONI.rxok (shows rx back preasure)
-- (1) not SER_MONI.rxok (shows rx back pressure)
-- (0) SER_MONI.rxact (shows rx activity)
-- RGB_G CPU busy (active cpugo=1, enabled with SWI(0))
-- (3) kernel mode, non-wait, pri>0

View File

@@ -1,4 +1,4 @@
-- $Id: sys_w11a_b3.vhd 883 2017-04-22 11:57:38Z mueller $
-- $Id: sys_w11a_b3.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2015-2017 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -99,9 +99,9 @@
-- DSP(7:4) shows abclkdiv & abclkdiv_f or PS depending on SWI(4)
-- DSP(3:0) shows DISPREG
-- DP(3:0) shows IO activity
-- (3) not SER_MONI.txok (shows tx back preasure)
-- (3) not SER_MONI.txok (shows tx back pressure)
-- (2) SER_MONI.txact (shows tx activity)
-- (1) not SER_MONI.rxok (shows rx back preasure)
-- (1) not SER_MONI.rxok (shows rx back pressure)
-- (0) SER_MONI.rxact (shows rx activity)
--

View File

@@ -1,4 +1,4 @@
-- $Id: sys_w11a_n4.vhd 885 2017-04-23 15:54:01Z mueller $
-- $Id: sys_w11a_n4.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2013-2017 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -110,9 +110,9 @@
-- DSP(7:4) shows abclkdiv & abclkdiv_f or PS, depending on SWI(5)
-- DSP(3:0) shows DISPREG or DR emulation, depending on SWI(4)
-- DP(3:0) shows IO activity
-- (3) not SER_MONI.txok (shows tx back preasure)
-- (3) not SER_MONI.txok (shows tx back pressure)
-- (2) SER_MONI.txact (shows tx activity)
-- (1) not SER_MONI.rxok (shows rx back preasure)
-- (1) not SER_MONI.rxok (shows rx back pressure)
-- (0) SER_MONI.rxact (shows rx activity)
--

View File

@@ -1,4 +1,4 @@
-- $Id: sys_w11a_br_n4d.vhd 858 2017-03-05 17:41:37Z mueller $
-- $Id: sys_w11a_br_n4d.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2017- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -83,9 +83,9 @@
-- DSP(7:4) shows abclkdiv & abclkdiv_f or PS, depending on SWI(5)
-- DSP(3:0) shows DISPREG or DR emulation, depending on SWI(4)
-- DP(3:0) shows IO activity
-- (3) not SER_MONI.txok (shows tx back preasure)
-- (3) not SER_MONI.txok (shows tx back pressure)
-- (2) SER_MONI.txact (shows tx activity)
-- (1) not SER_MONI.rxok (shows rx back preasure)
-- (1) not SER_MONI.rxok (shows rx back pressure)
-- (0) SER_MONI.rxact (shows rx activity)
--

View File

@@ -1,4 +1,4 @@
-- $Id: sys_w11a_s3.vhd 858 2017-03-05 17:41:37Z mueller $
-- $Id: sys_w11a_s3.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2007-2017 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -169,9 +169,9 @@
-- (4) '1'
-- (3:0) cpurust code
--
-- DP(3): not SER_MONI.txok (shows tx back preasure)
-- DP(3): not SER_MONI.txok (shows tx back pressure)
-- DP(2): SER_MONI.txact (shows tx activity)
-- DP(1): not SER_MONI.rxok (shows rx back preasure)
-- DP(1): not SER_MONI.rxok (shows rx back pressure)
-- DP(0): SER_MONI.rxact (shows rx activity)
--

View File

@@ -1,4 +1,4 @@
-- $Id: serport_1clock.vhd 748 2016-03-20 15:18:50Z mueller $
-- $Id: serport_1clock.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2011-2015 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -201,7 +201,7 @@ begin
SIZE => open
);
-- receive back preasure
-- receive back pressure
-- on if fifo more than 3/4 full
-- off if fifo less than 1/2 full
proc_rxok: process (CLK)

View File

@@ -1,4 +1,4 @@
-- $Id: serport_2clock.vhd 757 2016-04-02 11:19:06Z mueller $
-- $Id: serport_2clock.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2011-2015 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -268,7 +268,7 @@ begin
SIZER => open
);
-- receive back preasure
-- receive back pressure
-- on if fifo more than 3/4 full (less than 1/4 free)
-- off if fifo less than 1/2 full (more than 1/2 free)
proc_rxok: process (CLKS)

View File

@@ -1,4 +1,4 @@
-- $Id: serport_2clock2.vhd 759 2016-04-09 10:13:57Z mueller $
-- $Id: serport_2clock2.vhd 889 2017-04-30 13:31:27Z mueller $
--
-- Copyright 2016- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
@@ -244,7 +244,7 @@ begin
SIZER => open
);
-- receive back preasure
-- receive back pressure
-- on if fifo more than 3/4 full (less than 1/4 free)
-- off if fifo less than 1/2 full (more than 1/2 free)
proc_rxok: process (CLKS)