mirror of
https://github.com/RGBCube/serenity
synced 2025-07-10 12:07:35 +00:00
Make bash-2.05b build with minimal changes.
This is really neat. :^)
This commit is contained in:
parent
2cf477a151
commit
9d05f6b7a7
35 changed files with 326 additions and 176 deletions
|
@ -3,13 +3,13 @@
|
|||
|
||||
namespace CMOS {
|
||||
|
||||
BYTE read(BYTE index)
|
||||
byte read(byte index)
|
||||
{
|
||||
IO::out8(0x70, index);
|
||||
return IO::in8(0x71);
|
||||
}
|
||||
|
||||
void write(BYTE index, BYTE data)
|
||||
void write(byte index, byte data)
|
||||
{
|
||||
IO::out8(0x70, index);
|
||||
IO::out8(0x71, data);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue