`include "core/uarch.sv" module core_control_exception ( input logic clk, rst_n, input logic undefined, high_vectors, output word vector, output logic exception ); logic[2:0] vector_offset; assign exception = undefined; //TODO assign vector = {{16{high_vectors}}, 11'b0, vector_offset, 2'b00}; always_comb vector_offset = 3'b001; //TODO //TODO: Considerar que data abort usa + 8, no + 4 endmodule