Advertisement
Sidsh

Untitled

Dec 1st, 2024
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. typedef enum logic [1:0] {
  2. GETLINE = 2'b01, // Request data for modified line in L1
  3. SENDLINE = 2'b10, // Send requested cache line to L1
  4. INVALIDATELINE = 2'b11, // Invalidate a line in L1
  5. EVICTLINE = 2'b00 // Evict a line from L1
  6. } l2_l1_message_e;
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement