Merge branch 'feature/update_coredsl' into develop

This commit is contained in:
Eyck Jentzsch 2023-07-05 15:15:06 +02:00
commit a20eab0c2b
2 changed files with 1 additions and 8 deletions

View File

@ -30,8 +30,6 @@
*
*******************************************************************************/
<%
import com.minres.coredsl.util.BigIntegerWithRadix
def nativeTypeSize(int size){
if(size<=8) return 8; else if(size<=16) return 16; else if(size<=32) return 32; else return 64;
}
@ -57,10 +55,7 @@ def byteSize(int size){
return 128;
}
def getCString(def val){
if(val instanceof BigIntegerWithRadix)
return ((BigIntegerWithRadix)val).toCString()
else
return val.toString()
return val.toString()
}
%>
#ifndef _${coreDef.name.toUpperCase()}_H_

View File

@ -30,8 +30,6 @@
*
*******************************************************************************/
<%
import com.minres.coredsl.util.BigIntegerWithRadix
def nativeTypeSize(int size){
if(size<=8) return 8; else if(size<=16) return 16; else if(size<=32) return 32; else return 64;
}