fixes literal type

This commit is contained in:
2023-07-10 20:39:02 +02:00
parent 57da07eb17
commit 0b719a4b57
3 changed files with 3 additions and 4 deletions

View File

@ -55,7 +55,7 @@ def byteSize(int size){
return 128;
}
def getCString(def val){
return val.toString()
return val.toString()+'ULL'
}
%>
#ifndef _${coreDef.name.toUpperCase()}_H_