Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fallen committed Oct 24, 2012
1 parent e472898 commit 7e76854
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lm32_cpu.v
Expand Up @@ -2196,7 +2196,7 @@ begin
`LM32_CSR_JRX: csr_read_data_x = jrx_csr_read_data;
`endif
`LM32_CSR_CFG2: csr_read_data_x = cfg2;
`ifdef `LM32_MMU_ENABLED
`ifdef CFG_MMU_ENABLED
`LM32_CSR_TLB_VADDRESS: csr_read_data_x = load_store_csr_read_data_x;
`LM32_CSR_TLB_PADDRESS: csr_read_data_x = instruction_csr_read_data_x;
`LM32_CSR_PSW: csr_read_data_x = lm32_csr_psw_reg;
Expand Down
2 changes: 1 addition & 1 deletion lm32_dcache.v
Expand Up @@ -284,7 +284,7 @@ reg [`LM32_DC_ADDR_OFFSET_RNG] refill_offset; // Which word in cache l
wire last_refill; // Indicates when on last cycle of cache refill
reg [`LM32_DC_TMEM_ADDR_RNG] flush_set; // Which set is currently being flushed

`ifdef LM32_MMU_ENABLED
`ifdef CFG_MMU_ENABLED
wire [addr_dtlb_index_width-1:0] dtlb_data_read_address;
wire [addr_dtlb_index_width-1:0] dtlb_data_write_address;
wire dtlb_data_read_port_enable;
Expand Down
2 changes: 1 addition & 1 deletion lm32_interrupt.v
Expand Up @@ -267,7 +267,7 @@ begin
begin
// Handle wcsr write
if ((csr == `LM32_CSR_IE)
`ifdef `LM32_MMU_ENABLED
`ifdef CFG_MMU_ENABLED
|| (csr == `LM32_CSR_PSW)
`endif
)
Expand Down

0 comments on commit 7e76854

Please sign in to comment.