Swap warning and error colors,

add ZCls, Remove redundant MemSetU8
This commit is contained in:
xmm15 2020-02-16 01:54:22 -06:00
parent abea367056
commit 42cfcc6a9a
8 changed files with 191 additions and 194 deletions

Binary file not shown.

Binary file not shown.

View File

@ -29,4 +29,8 @@ public U0 Cls()
{//Clear terminal. Reminiscent of DOS command of same name.
DocClear;
}

public U0 ZCls()
{//Clear zenith terminal.
Zenith("DocClear;\n");
}

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -3456,8 +3456,8 @@ public class CSysFixedArea
#define CH_SHIFT_SPACE 0x1F
#define CH_SPACE 0x20
#define ST_ERR_ST "$$LTRED$$$$BK,1$$ERROR:$$FG$$$$BK,0$$ "
#define ST_WARN_ST "$$RED$$$$BK,1$$WARNING:$$FG$$$$BK,0$$ "
#define ST_ERR_ST "$$RED$$$$BK,1$$ERROR:$$FG$$$$BK,0$$ "
#define ST_WARN_ST "$$LTRED$$$$BK,1$$WARNING:$$FG$$$$BK,0$$ "
//Scan code flags
#define SCf_E0_PREFIX 7

View File

@ -166,17 +166,14 @@ public _extern _D3_ZERO CD3 *D3Zero(CD3 *dst); //To zero
public _extern _MEMCOMPARE I64 MemCompare(
U8 *ptr1,U8 *ptr2,I64 count); //Compare chunk of memory.
public _extern _MEMCOPY U8 *MemCopy(
U8 *dst,U8 *src,I64 count); //Copy chunk of memory. Only goes forward.
U8 *dst,U8 *src,I64 count); //Copy chunk of memory. Only goes forward.
public _extern _MEMSET U8 *MemSet(
U8 *dst,I64 val,I64 count); //Set chunk of U8s to value.
public _extern _MEMSET_I64 I64 *MemSetI64(
I64 *dst,I64 val,I64 I64count); //Set chunk of I64s to value.
public _extern _MEMSET_U16 U16 *MemSetU16(
U16 *dst,I64 val,I64 U16count); //Set chunk of U16s to value.
public _extern _MEMSET_U32 U32 *MemSetU32(
U32 *dst,I64 val,I64 U32count); //Set chunk of U32s to value.
public _extern _MEMSET U8 *MemSetU8(
U8 *dst,I64 val,I64 U8count); //Set chunk of U8s to value.
public _extern _MEMSET_U32 U32 *MemSetU32(U32 *dst,I64 val,I64 U32count); //Set chunk of U32s to value.
_extern SYS_HEAP_DBG_FLAG U8 sys_heap_debug;
_extern SYS_HEAP_INIT_FLAG U8 sys_heap_init_flag;
_extern SYS_HEAP_INIT_VAL U8 sys_heap_init_val;

Binary file not shown.