Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Implementato estrazione e inserimento automatico del disco.
Quando si cambia il disco o si fa la switch del lato (ALT+S) non sarà più necessario prima estrarlo e poi inserirlo.
- Loading branch information
Showing
with
34 additions
and 22 deletions.
- +0 −15 src/core/cpu_inline.h
- +4 −2 src/core/fds.c
- +4 −0 src/core/fds.h
- +8 −0 src/core/mappers/mapper_FDS.c
- +18 −5 src/gui/mainWindow.cpp
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
| @@ -86,6 +86,10 @@ EXTERNC struct _fds { | ||
| uint32_t position; | ||
| } block_4; | ||
| } file[0xFF]; | ||
| struct _fds_side_change { | ||
| BYTE new_side; | ||
| uint32_t delay; | ||
| } change; | ||
| WORD *data; | ||
| uint32_t counted_files; | ||
| } side; | ||
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