URL
https://opencores.org/ocsvn/sdhc-sc-core/sdhc-sc-core/trunk
Subversion Repositories sdhc-sc-core
Compare Revisions
- This comparison shows the changes necessary to convert path
/sdhc-sc-core/trunk/src/grpSd/unitSdWbSlave
- from Rev 160 to Rev 164
- ↔ Reverse comparison
Rev 160 → Rev 164
/src/SdWbSlave-Rtl-a.vhdl
1,11 → 1,28
-- |
-- Title: SdWbSlave |
-- File: SdWbSlave-Rtl-ea.vhdl |
-- Author: Copyright 2010: Rainer Kastl |
-- Standard: VHDL'93 |
-- SDHC-SC-Core |
-- Secure Digital High Capacity Self Configuring Core |
-- |
-- Description: Wishbone interface for the SD-Core |
-- |
-- (C) Copyright 2010 Rainer Kastl |
-- |
-- This file is part of SDHC-SC-Core. |
-- |
-- SDHC-SC-Core is free software: you can redistribute it and/or modify it |
-- under the terms of the GNU Lesser General Public License as published by |
-- the Free Software Foundation, either version 3 of the License, or (at |
-- your option) any later version. |
-- |
-- SDHC-SC-Core is distributed in the hope that it will be useful, but |
-- WITHOUT ANY WARRANTY; without even the implied warranty of |
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
-- General Public License for more details. |
-- |
-- You should have received a copy of the GNU Lesser General Public License |
-- along with SDHC-SC-Core. If not, see http://www.gnu.org/licenses/. |
-- |
-- File : SdWbSlave-Rtl-a.vhdl |
-- Owner : Rainer Kastl |
-- Description : Wishbone interface of SDHC-SC-Core |
-- Links : |
-- |
|
architecture Rtl of SdWbSlave is |
|
/src/WbTransaction.sv
1,3 → 1,28
// SDHC-SC-Core |
// Secure Digital High Capacity Self Configuring Core |
// |
// (C) Copyright 2010 Rainer Kastl |
// |
// This file is part of SDHC-SC-Core. |
// |
// SDHC-SC-Core is free software: you can redistribute it and/or modify it |
// under the terms of the GNU Lesser General Public License as published by |
// the Free Software Foundation, either version 3 of the License, or (at |
// your option) any later version. |
// |
// SDHC-SC-Core is distributed in the hope that it will be useful, but |
// WITHOUT ANY WARRANTY; without even the implied warranty of |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// General Public License for more details. |
// |
// You should have received a copy of the GNU Lesser General Public License |
// along with SDHC-SC-Core. If not, see http://www.gnu.org/licenses/. |
// |
// File : WbTransaction.sv |
// Owner : Rainer Kastl |
// Description : Transaction on the wishbone bus |
// Links : |
// |
|
`ifndef WBTRANSACTION_SV |
`define WBTRANSACTION_SV |
/src/IWishboneBus.sv
1,9 → 1,28
// |
// file: WishboneInterface.sv |
// author: Copyright 2010: Rainer Kastl |
// |
// Description: Wishbone interface |
// |
// SDHC-SC-Core |
// Secure Digital High Capacity Self Configuring Core |
// |
// (C) Copyright 2010 Rainer Kastl |
// |
// This file is part of SDHC-SC-Core. |
// |
// SDHC-SC-Core is free software: you can redistribute it and/or modify it |
// under the terms of the GNU Lesser General Public License as published by |
// the Free Software Foundation, either version 3 of the License, or (at |
// your option) any later version. |
// |
// SDHC-SC-Core is distributed in the hope that it will be useful, but |
// WITHOUT ANY WARRANTY; without even the implied warranty of |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// General Public License for more details. |
// |
// You should have received a copy of the GNU Lesser General Public License |
// along with SDHC-SC-Core. If not, see http://www.gnu.org/licenses/. |
// |
// File : IWishboneBus.sv |
// Owner : Rainer Kastl |
// Description : Wishbone bus |
// Links : Wishbone Spec R.3B |
// |
|
`ifndef IWISHBONEBUS |
`define IWISHBONEBUS |
/src/SdWbSlave-e.vhdl
1,11 → 1,28
-- |
-- Title: SdWbSlave |
-- File: SdWbSlave-Rtl-ea.vhdl |
-- Author: Copyright 2010: Rainer Kastl |
-- Standard: VHDL'93 |
-- SDHC-SC-Core |
-- Secure Digital High Capacity Self Configuring Core |
-- |
-- Description: Wishbone interface for the SD-Core |
-- |
-- (C) Copyright 2010 Rainer Kastl |
-- |
-- This file is part of SDHC-SC-Core. |
-- |
-- SDHC-SC-Core is free software: you can redistribute it and/or modify it |
-- under the terms of the GNU Lesser General Public License as published by |
-- the Free Software Foundation, either version 3 of the License, or (at |
-- your option) any later version. |
-- |
-- SDHC-SC-Core is distributed in the hope that it will be useful, but |
-- WITHOUT ANY WARRANTY; without even the implied warranty of |
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
-- General Public License for more details. |
-- |
-- You should have received a copy of the GNU Lesser General Public License |
-- along with SDHC-SC-Core. If not, see http://www.gnu.org/licenses/. |
-- |
-- File : SdWbSlave-e.vhdl |
-- Owner : Rainer Kastl |
-- Description : Wishbone interface of SDHC-SC-Core |
-- Links : |
-- |
|
library ieee; |
use ieee.std_logic_1164.all; |
/src/WishboneBFM.sv
1,10 → 1,28
// |
// file: Wishbone-BFM.sv |
// author: Copyright 2010: Rainer Kastl |
// |
// Description: Bus functional model for wishbone registered feedback |
// Wishbone spec Revision B.3 |
// |
// SDHC-SC-Core |
// Secure Digital High Capacity Self Configuring Core |
// |
// (C) Copyright 2010 Rainer Kastl |
// |
// This file is part of SDHC-SC-Core. |
// |
// SDHC-SC-Core is free software: you can redistribute it and/or modify it |
// under the terms of the GNU Lesser General Public License as published by |
// the Free Software Foundation, either version 3 of the License, or (at |
// your option) any later version. |
// |
// SDHC-SC-Core is distributed in the hope that it will be useful, but |
// WITHOUT ANY WARRANTY; without even the implied warranty of |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// General Public License for more details. |
// |
// You should have received a copy of the GNU Lesser General Public License |
// along with SDHC-SC-Core. If not, see http://www.gnu.org/licenses/. |
// |
// File : WishboneBFM.sv |
// Owner : Rainer Kastl |
// Description : Wishbone BFM |
// Links : Wishbone Spec B.3 |
// |
|
`ifndef WISHBONE |
`define WISHBONE |