simx directory name fix

This commit is contained in:
Blaise Tine
2021-11-30 07:17:58 -05:00
parent 41d7e6c63a
commit 2a7a4df342
48 changed files with 20 additions and 69 deletions

17
sim/simx/constants.h Normal file
View File

@@ -0,0 +1,17 @@
#pragma once
#include "types.h"
#ifndef MEM_LATENCY
#define MEM_LATENCY 24
#endif
namespace vortex {
enum Constants {
SMEM_BANK_OFFSET = log2ceil(sizeof(Word)) + log2ceil(STACK_SIZE / sizeof(Word)),
};
}