diff --git a/.editorconfig b/.editorconfig
index 25d429466d3363de2fd5acca529990b661fa89a4..f36e411b9b3b533d008165d555aa886cd84daf49 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -6,8 +6,8 @@ root = true
 end_of_line = lf
 insert_final_newline = true
 trim_trailing_whitespace = true
-max_line_length = off
+max_line_length = 100
 # 4 space indentation
 [*.{sv, svh, v, vhd}]
 indent_style = space
-indent_size = 4
+indent_size = 2
diff --git a/fpga/src/ariane_peripherals.sv b/fpga/src/ariane_peripherals.sv
index 68d87def6cfa106e7f53844714ce7a3d9ed643b0..f36a95088efad3adceb09c3a1917663ea6f2726c 100644
--- a/fpga/src/ariane_peripherals.sv
+++ b/fpga/src/ariane_peripherals.sv
@@ -74,10 +74,10 @@ module ariane_peripherals #(
         .clk_i              ( clk_i                  ),
         .rst_ni             ( rst_ni                 ),
         .irq_sources_i      ( irq_sources            ),
-        .eip_targets_o      ( irq_o                  ),
+        .eip_targets_o      (                   ),
         .external_bus_io    ( reg_bus                )
     );
-
+    assign irq_o = '0;
     // ---------------
     // UART
     // ---------------
@@ -432,4 +432,4 @@ module ariane_peripherals #(
         assign s_axi_spi_rlast = 1'b1;
         assign s_axi_spi_rvalid = 1'b1;
     end
-endmodule
\ No newline at end of file
+endmodule
diff --git a/fpga/src/bootrom/ariane.dts b/fpga/src/bootrom/ariane.dts
index 606c9a848940095be2f13ba599a73e5efa576bf8..e64aa79ca05418a1c6966dadf981a6e3191a63e4 100644
--- a/fpga/src/bootrom/ariane.dts
+++ b/fpga/src/bootrom/ariane.dts
@@ -5,9 +5,9 @@
   #size-cells = <2>;
   compatible = "eth,ariane-bare-dev";
   model = "eth,ariane-bare";
-  chosen {
-    stdout-path = "/soc/uart@10000000:115200";
-  };
+  // chosen {
+  //   stdout-path = "/soc/uart@10000000:115200";
+  // };
   cpus {
     #address-cells = <1>;
     #size-cells = <0>;
diff --git a/src/decoder.sv b/src/decoder.sv
index efb31c5ad8fe1925a2bd099b278b383a19c8a869..f02fe9c21165cb2ace47a532436385eb545e6faa 100644
--- a/src/decoder.sv
+++ b/src/decoder.sv
@@ -108,7 +108,7 @@ module decoder (
                                     if (priv_lvl_i == riscv::PRIV_LVL_S && tsr_i) begin
                                         illegal_instr = 1'b1;
                                         //  do not change privilege level if this is an illegal instruction
-                                       instruction_o.op = ADD;
+                                        instruction_o.op = ADD;
                                     end
                                 end
                                 // MRET
diff --git a/src/mmu.sv b/src/mmu.sv
index ada0e86144b1a26966860228baf94fb19c38c1a0..8a982cc089f77f2be026e6fb1e4944f4e1bf26b3 100644
--- a/src/mmu.sv
+++ b/src/mmu.sv
@@ -156,6 +156,25 @@ module mmu #(
         .*
      );
 
+    ila_1 i_ila_1 (
+        .clk(clk_i), // input wire clk
+        .probe0({req_port_o.address_tag, req_port_o.address_index}),
+        .probe1(req_port_o.data_req), // input wire [63:0]  probe1
+        .probe2(req_port_i.data_gnt), // input wire [0:0]  probe2
+        .probe3(req_port_i.data_rdata), // input wire [0:0]  probe3
+        .probe4(req_port_i.data_rvalid), // input wire [0:0]  probe4
+        .probe5(ptw_error), // input wire [1:0]  probe5
+        .probe6(update_vaddr), // input wire [0:0]  probe6
+        .probe7(update_ptw_itlb.valid), // input wire [0:0]  probe7
+        .probe8(update_ptw_dtlb.valid), // input wire [0:0]  probe8
+        .probe9(dtlb_lu_access), // input wire [0:0]  probe9
+        .probe10(lsu_vaddr_i), // input wire [0:0]  probe10
+        .probe11(dtlb_lu_hit), // input wire [0:0]  probe11
+        .probe12(itlb_lu_access), // input wire [0:0]  probe12
+        .probe13(icache_areq_i.fetch_vaddr), // input wire [0:0]  probe13
+        .probe14(itlb_lu_hit) // input wire [0:0]  probe13
+    );
+
     //-----------------------
     // Instruction Interface
     //-----------------------