diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-10 10:28:40 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-10 10:28:40 -0700 |
commit | 1dd7e23a20bcbfdf69f34d5060637da49fce7b46 (patch) | |
tree | ccf3dbb8f9a3b51f5025135e168dfa6f6070f246 /techlibs | |
parent | 58f4b106f3b5914fa00edd59bb2df56d9fe2632e (diff) | |
parent | a91ea6612a73568782c80bd12ce2875353e2b5c5 (diff) | |
download | yosys-1dd7e23a20bcbfdf69f34d5060637da49fce7b46.tar.gz yosys-1dd7e23a20bcbfdf69f34d5060637da49fce7b46.tar.bz2 yosys-1dd7e23a20bcbfdf69f34d5060637da49fce7b46.zip |
Merge remote-tracking branch 'origin/master' into eddie/muxpack
Diffstat (limited to 'techlibs')
-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, |