You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
multiplying procedures u8x8, u16x16 replaced by code from CC65
adding the POKEY reset code at the beginning of the program launch
optimization of conditional IF expressions () and () and ... IF () or () or ...
CMP_SHORTINT, CMP_SMALLINT optimization
GRAPH, FASTGRAPH: SetActiveBuffer, SetDisplayBuffer, NewDisplayBuffer, SwitchDisplayBuffer, example demoeffects\lines2.pas, line3.pas, line4.pas
GRAPH: Ellipse procedure (X, Y, StAngle, EndAngle, xRadius,yRadius: Word);
MATH: Hypot
SYSTEM: Length(string_array[element])
SYSTEM: GetMem, FreeMem
SYSTEM: IntToStr(CARDINAL), Str(CARDINAL, STRING)
SYSUTILS: ByteToStr(BYTE): STRING
SYSUTILS: corrected FindFirst, StrToFloat
SYSTEM: corrected Val(string, real, code) ; Val(string, single, code)
new CIO unit: Opn, Cls, Get, Put, BGet, BPut, XIO
new SIODISK unit, separated from the SYSTEM
new S2 unit, integrated with handler installer VBXE-S2: (S_VBXE.SYS)
new DEFLATE unit, which performs DEFLATE decompression (procedure unDEF), example compression\undef.pas
new LZ4 unit, implementing LZ4 decompression (procedure unLZ4), example compression\unlz4.pas, unlz4_stream.pas
new APLIB unit, which performs apLib decompression (procedure unApl), example compression\unapl.pas, unapl_stream.pas
new CRC unit: function crc32(crc: cardinal; buf: Pbyte; len: word)
a new PASCAL procedure/function modifier, causing a new memory block to be assigned/released for variables each time a procedure/function is called, example 'math\evaluate.pas'.
added ability to disable ROM while maintaining system operation, {$DEFINE ROMOFF}
shorter names of the switch -zpage (-z), -stack (-s), -data (-d), -code (-c), -define (-d), -ipath (-i)
added possibility to generate code for C64 (-t c64)