32 lines
522 B
C
32 lines
522 B
C
#include "test.h"
|
|
|
|
/* No CRT in this file (this includes stdio and stdlib!). */
|
|
|
|
void finished(void)
|
|
{
|
|
static const char s[] = "@@FINISHED\n";
|
|
write(1, s, sizeof(s));
|
|
}
|
|
|
|
void writehex(uint32_t code)
|
|
{
|
|
char buf[8];
|
|
char* p = &buf[sizeof(buf)];
|
|
|
|
do
|
|
{
|
|
*--p = "0123456789abcdef"[code & 0xf];
|
|
code >>= 4;
|
|
}
|
|
while (code > 0);
|
|
|
|
write(1, p, buf + sizeof(buf) - p);
|
|
}
|
|
|
|
void fail(uint32_t code)
|
|
{
|
|
write(1, "@@FAIL on line 0x", 7);
|
|
writehex(code);
|
|
write(1, "\n", 1);
|
|
}
|