Skip to content

Commit

Permalink
Fixed typo; bye -> byte.
Browse files Browse the repository at this point in the history
  • Loading branch information
skx authored and ivanizag committed Jun 22, 2024
1 parent f4183d3 commit fa15986
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bdos_drive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub fn select(env: &mut BdosEnvironment, selected: u8) {
env.state.selected_bitmap |= 1 << env.state.drive;


// Update the RAM bye to mark our drive/user in a persistent way.
// Update the RAM byte to mark our drive/user in a persistent way.
env.machine.poke(CCP_USER_DRIVE_ADDRESS, env.state.user << 4 | env.state.drive)
}

Expand Down
2 changes: 1 addition & 1 deletion src/bdos_file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ pub fn get_set_user_number(env: &mut BdosEnvironment, user: u8) -> u8 {
if user != 0xff {
env.state.user = user & 0x0f;

// Update the RAM bye to mark our drive/user in a persistent way.
// Update the RAM byte to mark our drive/user in a persistent way.
env.machine.poke(CCP_USER_DRIVE_ADDRESS, env.state.user << 4 | env.state.drive)

}
Expand Down

0 comments on commit fa15986

Please sign in to comment.