ZealOS/src/Demo/Directives.CC
xmm15 889d97383d 2 Spaces -> 1 Tab (4 spaced) for indentation
Fixed PCILookUpSingle code for this change
EdCodeTools reindent needs to be updated
2020-02-20 17:40:10 -06:00

13 lines
244 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;