mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-01-15 00:56:39 +00:00
3a33e6baaf
Rename all .CC files to .ZC extension.
13 lines
254 B
HolyC
Executable file
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;
|