AXI4Keyboard.scala (f320e0f01bd645f0a3045a8a740e60dd770734a9) AXI4Keyboard.scala (3c02ee8f82edea481fa8336c7f54ffc17fafba91)
1/***************************************************************************************
2* Copyright (c) 2020-2021 Institute of Computing Technology, Chinese Academy of Sciences
3* Copyright (c) 2020-2021 Peng Cheng Laboratory
4*
5* XiangShan is licensed under Mulan PSL v2.
6* You can use this software according to the terms and conditions of the Mulan PSL v2.
7* You may obtain a copy of Mulan PSL v2 at:
8* http://license.coscl.org.cn/MulanPSL2

--- 7 unchanged lines hidden (view full) ---

16
17package device
18
19import chisel3._
20import chisel3.util._
21import chipsalliance.rocketchip.config.Parameters
22import freechips.rocketchip.diplomacy.AddressSet
23import utils._
1/***************************************************************************************
2* Copyright (c) 2020-2021 Institute of Computing Technology, Chinese Academy of Sciences
3* Copyright (c) 2020-2021 Peng Cheng Laboratory
4*
5* XiangShan is licensed under Mulan PSL v2.
6* You can use this software according to the terms and conditions of the Mulan PSL v2.
7* You may obtain a copy of Mulan PSL v2 at:
8* http://license.coscl.org.cn/MulanPSL2

--- 7 unchanged lines hidden (view full) ---

16
17package device
18
19import chisel3._
20import chisel3.util._
21import chipsalliance.rocketchip.config.Parameters
22import freechips.rocketchip.diplomacy.AddressSet
23import utils._
24import utility._
24
25class KeyboardIO extends Bundle {
26 val ps2Clk = Input(Bool())
27 val ps2Data = Input(Bool())
28}
29
30// this Module is not tested
31class AXI4Keyboard

--- 21 unchanged lines hidden ---
25
26class KeyboardIO extends Bundle {
27 val ps2Clk = Input(Bool())
28 val ps2Data = Input(Bool())
29}
30
31// this Module is not tested
32class AXI4Keyboard

--- 21 unchanged lines hidden ---