-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename dir_file_count to dir_entry_count
- Loading branch information
1 parent
40d9f3e
commit 700c01f
Showing
5 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
libsrc/apple2/dir_file_count.s → libsrc/apple2/dir_entry_count.s
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
; | ||
; Colin Leroy-Mira <[email protected]>, 2024 | ||
; | ||
; unsigned int __fastcall__ dir_file_count(DIR *dir); | ||
; unsigned int __fastcall__ dir_entry_count(DIR *dir); | ||
; | ||
|
||
.export _dir_file_count | ||
.export _dir_entry_count | ||
|
||
.importzp ptr1 | ||
|
||
.include "apple2.inc" | ||
.include "dir.inc" | ||
|
||
.proc _dir_file_count | ||
.proc _dir_entry_count | ||
sta ptr1 | ||
stx ptr1+1 | ||
|
||
|