mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 08:42:24 +00:00
Some support in makefile for 32 bit model.
This commit is contained in:
parent
b158671cf8
commit
b40dc4e2f8
27 changed files with 141 additions and 116 deletions
|
|
@ -118,10 +118,10 @@ void Console_Hex (int32 i)
|
|||
|
||||
void Console_Read (CHAR *ch)
|
||||
{
|
||||
int32 n;
|
||||
address n;
|
||||
int16 error;
|
||||
Console_Flush();
|
||||
error = Platform_ReadBuf(0, (void*)&*ch, 1, &n);
|
||||
error = Platform_ReadBuf(0, (void*)&*ch, 1, (void*)&n);
|
||||
if (n != 1) {
|
||||
*ch = 0x00;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue