17 lines
214 B
C++
17 lines
214 B
C++
#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)),
|
|
|
|
};
|
|
|
|
} |