1.1 --- a/lm32_top.v Fri Aug 13 01:16:35 2010 +0100 1.2 +++ b/lm32_top.v Sun Mar 06 19:22:27 2011 +0000 1.3 @@ -38,7 +38,7 @@ 1.4 rst_i, 1.5 // From external devices 1.6 `ifdef CFG_INTERRUPTS_ENABLED 1.7 - interrupt_n, 1.8 + interrupt, 1.9 `endif 1.10 // From user logic 1.11 `ifdef CFG_USER_ENABLED 1.12 @@ -111,7 +111,7 @@ 1.13 input rst_i; // Reset 1.14 1.15 `ifdef CFG_INTERRUPTS_ENABLED 1.16 -input [`LM32_INTERRUPT_RNG] interrupt_n; // Interrupt pins, active-low 1.17 +input [`LM32_INTERRUPT_RNG] interrupt; // Interrupt pins 1.18 `endif 1.19 1.20 `ifdef CFG_USER_ENABLED 1.21 @@ -240,8 +240,8 @@ 1.22 ///////////////////////////////////////////////////// 1.23 // Instantiations 1.24 ///////////////////////////////////////////////////// 1.25 - 1.26 -// LM32 CPU 1.27 + 1.28 +// LM32 CPU 1.29 lm32_cpu cpu ( 1.30 // ----- Inputs ------- 1.31 .clk_i (clk_i), 1.32 @@ -251,7 +251,7 @@ 1.33 .rst_i (rst_i), 1.34 // From external devices 1.35 `ifdef CFG_INTERRUPTS_ENABLED 1.36 - .interrupt_n (interrupt_n), 1.37 + .interrupt (interrupt), 1.38 `endif 1.39 // From user logic 1.40 `ifdef CFG_USER_ENABLED