From 4a0c8fe7d2e020051ca1ca0f5a42b47f60ebd363 Mon Sep 17 00:00:00 2001 From: Jessica Clarke Date: Mon, 21 Dec 2020 13:37:01 +0000 Subject: [PATCH] PLIC: Update comment after previous commit --- src_Core/PLIC/PLIC.bsv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src_Core/PLIC/PLIC.bsv b/src_Core/PLIC/PLIC.bsv index 9f0e7a2..6dc3da9 100644 --- a/src_Core/PLIC/PLIC.bsv +++ b/src_Core/PLIC/PLIC.bsv @@ -498,7 +498,7 @@ module mkPLIC (PLIC_IFC #(t_n_external_sources, t_n_targets, t_max_priority)) end // Interrupt service completion by target - // Actual memory-write-data is irrelevant. + // Write data is the source ID to complete. Disabled sources are ignored. else if ((addr_offset [31:0] & 32'hFFFF_0FFF) == 32'h0020_0004) begin Bit #(T_wd_target_id) target_id = truncate (addr_offset [20:12]); Bit #(T_wd_source_id) source_id = truncate (wdata32);