From: Cesar Strauss Date: Sun, 14 Feb 2021 19:16:24 +0000 (-0300) Subject: Remove obsolete comment X-Git-Tag: convert-csv-opcode-to-binary~231^2~3 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7802281e336d411517a78b00b75747b63303f94c;p=soc.git Remove obsolete comment Forgot to remove the TODO item when I implemented it. --- diff --git a/src/soc/simple/issuer.py b/src/soc/simple/issuer.py index c8dac147..782bded6 100644 --- a/src/soc/simple/issuer.py +++ b/src/soc/simple/issuer.py @@ -372,10 +372,6 @@ class TestIssuerInternal(Elaboratable): comb += fetch_insn_ready_i.eq(1) with m.If(fetch_insn_valid_o): # decode the instruction - # TODO, before issuing new instruction first - # check if it's SVP64. (svp64.is_svp64_mode set) - # if yes, record the svp64_rm, put that into - # pdecode2.sv_rm, then read another 32 bits (INSN_FETCH2?) comb += dec_opcode_i.eq(fetch_insn_o) # actual opcode sync += core.e.eq(pdecode2.e) sync += core.state.eq(cur_state)