This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
elements: | |
CPU1: | |
clocked: true | |
modes: #values in mW | |
- fast: -6.795 # 2.265mA * 3V | |
- slow: -2.5 # 0.855 * 3V | |
- sleep: -0.075 | |
- off: 0 | |
speed: #values in instructions/s | |
- fast: 40000000 #16MHz ~4 cycles/inst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
element CPU1() { //sincrono | |
#clkscale 1000 | |
mode sleep: -5; //consumo de unidades de energia por 1k ciclo de clk | |
mode active_slow: -50; | |
mode active_fast: -100; | |
mode disable: 0; | |
} | |
element TEMP() { //assincrono |