Why?
Is there a way to use CTR and recover redirection and pipelines?
Using CRT unit shuts down redirection and pipelines
Started by Actor, Jun 16 2010 01:00 PM
1 reply to this topic
#1
Posted 16 June 2010 - 01:00 PM
|
|
|
#2
Posted 24 June 2010 - 06:27 PM
Yes, there is.
But if you're using CRT on a modern system, you get very weird errors, because, well, it has to do with your processor being way too fast.
Anyway, there's a way to do that.
Crt chops off the original DOS file access, because just writing to the screen is MUCH faster.
You can also set it back:
Good luck
But if you're using CRT on a modern system, you get very weird errors, because, well, it has to do with your processor being way too fast.
Anyway, there's a way to do that.
Crt chops off the original DOS file access, because just writing to the screen is MUCH faster.
assign(output, ''); rewrite(output); assign(input,''); reset(input);
You can also set it back:
AssignCrt(input); reset(input); AssignCrt(output); rewrite(output);
Good luck


Sign In
Create Account


Back to top










