ZealOS/src/Demo/Directives.ZC
TomAwezome 3a33e6baaf Rename CosmiC to ZealC.
Rename all .CC files to .ZC extension.
2021-12-11 06:21:22 -05:00

13 lines
254 B
HolyC
Executable file

U0 Directives()
{
"Date\t:%s\n", __DATE__;
"Time\t:%s\n", __TIME__;
"File\t:%s\n", __FILE__;
"Dir\t:%s\n", __DIR__;
"Line\t:%d\n", __LINE__;
"CmdLine\t:%d\n", __CMD_LINE__;
"Inst1\t:%P:%08X\n", $$, $$;
"Inst2\t:%P:%08X\n", $$, $$;
}
Directives;