mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-28 08:16:31 +00:00
889d97383d
Fixed PCILookUpSingle code for this change EdCodeTools reindent needs to be updated
21 lines
294 B
HolyC
Executable file
21 lines
294 B
HolyC
Executable file
U0 SubSwitch()
|
|
{
|
|
I64 i;
|
|
for (i=0;i<10;i++)
|
|
switch (i) {
|
|
case 0: "Zero "; break;
|
|
case 2: "Two "; break;
|
|
case 4: "Four "; break;
|
|
start:
|
|
"[";
|
|
case 1: "One"; break;
|
|
case 3: "Three";break;
|
|
case 5: "Five"; break;
|
|
end:
|
|
"] ";
|
|
break;
|
|
}
|
|
'\n';
|
|
}
|
|
|
|
SubSwitch;
|