diff options
author | David Shah <dave@ds0.me> | 2019-06-10 15:12:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-10 15:12:23 +0100 |
commit | 498c21e7350d88bf8d14c73f5b07e3b6a1f6b5ca (patch) | |
tree | eea2f3eae7aa21c389bcdc54d81352a18705d99c | |
parent | 5a5cbf64584ddad8d37a1b60887fb0b354800f61 (diff) | |
parent | abf90b040331f9fd48c9e4bdb4bbb952db4c2d04 (diff) | |
download | yosys-498c21e7350d88bf8d14c73f5b07e3b6a1f6b5ca.tar.gz yosys-498c21e7350d88bf8d14c73f5b07e3b6a1f6b5ca.tar.bz2 yosys-498c21e7350d88bf8d14c73f5b07e3b6a1f6b5ca.zip |
Merge pull request #1082 from corecode/u4k
ice40/cells_sim.v: Add support for RGB_DRV/LED_DRV_CUR for u4k
-rw-r--r-- | techlibs/ice40/cells_sim.v | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/techlibs/ice40/cells_sim.v b/techlibs/ice40/cells_sim.v index e89405b22..f9945b2b5 100644 --- a/techlibs/ice40/cells_sim.v +++ b/techlibs/ice40/cells_sim.v @@ -974,6 +974,30 @@ parameter RGB2_CURRENT = "0b000000"; endmodule (* blackbox *) +module SB_LED_DRV_CUR( + input EN, + output LEDPU +); +endmodule + +(* blackbox *) +module SB_RGB_DRV( + input RGBLEDEN, + input RGB0PWM, + input RGB1PWM, + input RGB2PWM, + input RGBPU, + output RGB0, + output RGB1, + output RGB2 +); +parameter CURRENT_MODE = "0b0"; +parameter RGB0_CURRENT = "0b000000"; +parameter RGB1_CURRENT = "0b000000"; +parameter RGB2_CURRENT = "0b000000"; +endmodule + +(* blackbox *) module SB_I2C( input SBCLKI, input SBRWI, |