You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working on a configuration for the Enterprise running IS-DOS, and I've run into a minor issue; am I right in assuming that you can't specify control/navigation codes above 127? I believe the delete-right code produced on the Enterprise is 160, so I'm not sure how to specify that in the .cf file.
Regards,
HC
The text was updated successfully, but these errors were encountered:
Anyway, you could modify the CrtIn() function in the adaptation file you are using as follows:
/* Input character from the keyboard
---------------------------------
All program input is done with this function.
Translate some key bindings.
int CrtIn(void)
*/
CrtIn()
{
int ch;
switch(ch = CrtInEx()) {
case 160 : /* 160 == DEL */
return DEL;
}
return ch;
}
So TE will translate 160 dec into 127 dec and the ini file should read:
key.right = "^?"
You could use any other character control for translation if desired.
Hi!
I'm working on a configuration for the Enterprise running IS-DOS, and I've run into a minor issue; am I right in assuming that you can't specify control/navigation codes above 127? I believe the delete-right code produced on the Enterprise is 160, so I'm not sure how to specify that in the .cf file.
Regards,
HC
The text was updated successfully, but these errors were encountered: