From 8c31bb08e3e53f15fdc3a0ce5e1af4538e958b5c Mon Sep 17 00:00:00 2001 From: Bob Supnik Date: Mon, 16 May 2022 03:03:28 -0700 Subject: [PATCH] alpha: Correct register declarations --- alpha/alpha_ev5_tlb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/alpha/alpha_ev5_tlb.c b/alpha/alpha_ev5_tlb.c index 9cfded4a..f3605aba 100644 --- a/alpha/alpha_ev5_tlb.c +++ b/alpha/alpha_ev5_tlb.c @@ -1,6 +1,6 @@ /* alpha_ev5_tlb.c - Alpha EV5 TLB simulator - Copyright (c) 2003-2006, Robert M Supnik + Copyright (c) 2003-2021, Robert M Supnik Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -99,13 +99,13 @@ REG tlb_reg[] = { { HRDATA (IASN, itlb_asn, ITB_ASN_WIDTH) }, { HRDATA (INLU, itlb_nlu, ITLB_WIDTH) }, { BRDATA (IMINI, &i_mini_tlb, 16, 32, TLB_ESIZE) }, - { BRDATA (ITLB, itlb, 16, 32, ITLB_SIZE*TLB_ESIZE) }, + { BRDATA (ITLB, &itlb, 16, 32, ITLB_SIZE * TLB_ESIZE) }, { HRDATA (DCM, dtlb_cm, 2) }, { HRDATA (DSPAGE, dtlb_spage, 2), REG_HRO }, { HRDATA (DASN, dtlb_asn, DTB_ASN_WIDTH) }, { HRDATA (DNLU, dtlb_nlu, DTLB_WIDTH) }, { BRDATA (DMINI, &d_mini_tlb, 16, 32, TLB_ESIZE) }, - { BRDATA (DTLB, dtlb, 16, 32, DTLB_SIZE*TLB_ESIZE) }, + { BRDATA (DTLB, &dtlb, 16, 32, DTLB_SIZE * TLB_ESIZE) }, { NULL } };