📄 scramble.c
字号:
/***************************************************************************
machine.c
Functions to emulate general aspects of the machine (RAM, ROM, interrupts,
I/O ports)
***************************************************************************/
#include "driver.h"
int scramble_IN2_r(int offset)
{
int res;
res = readinputport(2);
/* avoid protection */
if (cpu_getpc() == 0x00e4) res &= 0x7f;
return res;
}
int scramble_protection_r(int offset)
{
return 0x6f;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -