//MACRO Literals //-------------------------------------------------------------------------------------------------- // // @ CopyRight Roberti & Parau Enterprises, Inc. 2021-2023 // // This work is licensed under the Creative Commons Attribution-NoDerivatives 4.0 International License. // To view a copy of this license, visit http://creativecommons.org/licenses/by-nd/4.0/ // or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. // //-------------------------------------------------------------------------------------------------- // if (Label !== "") DVASM.formatLine(Label, "BYTE", "0[0]", "// Start of literal pool"); var litPool= DVASM.dropJSGlobal("__sys_literals"); if (litPool == null) return; for (var i= 0; i < litPool.length; i++) { var stmtList= litPool[i]; if (stmtList != null) for (var j= 0; j < stmtList.length; j++) { var stmt= stmtList[j]; DVASM.formatLine(stmt[0], stmt[1], stmt[2], stmt[3]); } }