Skip to content

Commit f510e43

Browse files
committed
v2.1 beta 1
All the changes and fixes of v2.0.5 beta 1 and more: * Addied the license file and the Markdown documentation. * Fix #3: RDBLK can't read files with read-only attribute * Change in boot keys: now the key to request one single drive per driver is the 5 key, and CTRL is simply passed to MSX-DOS kernels as when booting with MSX-DOS. * Added the "User is requesting reduced drive count" flag to the input of the DRV_INIT routine and the DRV_CONFIG routine.
1 parent f90f8ee commit f510e43

File tree

547 files changed

+10066
-26363
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

547 files changed

+10066
-26363
lines changed

.gitignore

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
syntax: glob
22

3+
.vs/
34
bin/**
45
*.sym
56
*.SYM
@@ -22,25 +23,26 @@ dos250ba.dat
2223
kernel.dat
2324
nextor2.rom
2425
info/*.pdf
25-
source/msxdos25/bank*/**.inc
26-
source/msxdos25/drivers/**.inc
27-
source/msxdos25/bank5/**.dat
28-
source/msxdos25/bank5/**.asm
29-
source/command25/msxdos/**.inc
30-
source/command25/msxdos/codes.mac
31-
source/command25/msxdos/data.mac
26+
source/kernel/bank*/*.inc
27+
source/kernel/drivers/*.inc
28+
source/kernel/drivers/**/*.inc
29+
source/kernel/drivers/**/*.lst
30+
!source/kernel/drivers/MegaFlashRomSD/*.bin
31+
source/kernel/drivers/**/*.rom
32+
source/kernel/drivers/**/*.ROM
33+
source/kernel/bank5/*.dat
34+
source/kernel/bank5/*.asm
35+
source/command/msxdos/*.inc
36+
source/command/msxdos/codes.mac
37+
source/command/msxdos/data.mac
3238
source/tools/**.inc
3339
source/tools/**.asm
3440
source/tools/**.com
3541
source/tools/**.COM
3642
source/tools/codes.mac
3743
source/tools/data.mac
38-
source\tools\C\*.asm
39-
source\tools\C\*.com
4044
*conflicto*.*
4145
*.sln
4246
*.suo
4347
NEXTOR.SYS
4448
NEXTORK.SYS
45-
46-

LICENSE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
MSX-DOS is (c) 2018 The MSX Licensing Corporation
2+
Nextor is (c) 2018 Nestor Soriano Vilchez
3+
4+
Nextor is a fork of MSX-DOS and as such it makes extensive use of the MSX-DOS source code. The MSX Licensing Corporation authorizes this usage under the following terms:
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish and/or distribute the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7+
8+
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
9+
10+
- Commercial usage of the Software is not allowed without explicit permission from the copyright holders. "Commercial usage" means selling copies of the Software, either in source code form or in binary form.
11+
12+
- Producing and distributing hardware that includes the Software in ROM (or in an equivalent built-in storage media) is allowed as long as no fee is charged for the Software itself. That is, the selling price of the hardware must be the same it would be if it didn't include the Software.
13+
14+
- Derivative works are not allowed without explicit permission from the copyright holders. "Derivative works" means independent projects that are created as forks of the original source code for the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 56 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,60 @@
11
# Nextor
22

3-
This branch is a bit outdated, it needs some cleanup and syncrhonization work. In the mean time please see:
3+
Nextor is a disk operating system for MSX computers. It is built on top of the source code of MSX-DOS 2.31, released in 1991.
44

5-
* The README.md file for the `v.2.0` branch
5+
The source code of Nextor is published with permission from the MSX Licensing Corporation under certain terms. **Please take a moment to read [the license terms](LICENSE.md) for details**.
66

7-
* The `Nextor-2.1-alpha-1.txt` and `Nextor-2.1-alpha-2.txt` files in the `info` folder of this branch
7+
Please visit [the Nextor section in Konamiman's MSX page](https://www.konamiman.com/msx/msx-e.html#nextor) for binaries.
8+
9+
## Repository structure
10+
11+
Note that there is no `master` branch, but branches for each major version of Nextor (v2.0 and v2.1 currently).
12+
13+
* [**source**](/source): The source code of Nextor itself.
14+
15+
* [**kernel**](source/kernel): The kernel ROM, includes the FDISK tool.
16+
17+
* [**command**](source/command): `NEXTOR.SYS`, `COMMAND2.COM` and the command line tools that were originally supplied with MSX-DOS.
18+
19+
* [**tools**](source/tools): The new command line tools created for Nextor.
20+
21+
* [**wintools**](/wintools): Windows tools needed for building Nextor. Includes the source for two custom made tools: [`mknexrom`](/wintools/mknexrom.c) (C) and [`SymToEqus`](/wintools/SymToEqus.cs) (C#).
22+
23+
* [**docs**](/docs): Documentation for both users and developers.
24+
25+
## How to build Nextor
26+
27+
You need:
28+
29+
1. A Windows machine (if you don't have one see ["No Windows?"](#no-windows) below)
30+
2. SDCC ([http://sdcc.sourceforge.net](http://sdcc.sourceforge.net)), targetting the Z80 processor, to build FDISK.
31+
3. .NET Framework 2.0 or higher (for the `SymToEqus` tool in the `wintools` folder)
32+
4. The `wintools` folder must be added to the `PATH` environment variable
33+
34+
### To build the Nextor kernel
35+
36+
Run the `compile.bat` script located in the `source\kernel` folder. If the FDISK tool has not been compiled already (the `fdisk.dat` and `fdisk2.dat` files do not exist in the `bank5` folder), they will be compiled on the fly.
37+
38+
The generated kernel base file and the complete ROM files will be generated in the `bin\kernels` folder. One ROM file will be generated for each folder existing in the `source\kernel\drivers` folder.
39+
40+
### To build the FDISK tool only
41+
42+
If you make a change in the FDISK tool, you can compile it without having to compile the full kernel again. Just run the `compile.bat` script in the `source\kernel\bank5` folder (do NOT run `compfdsk.bat`). The ROM files in `bin\kernels` will be appropriately updated.
43+
44+
### To build the command line tools
45+
46+
Run the `compile.bat` script in the `source\tools` folder. The tools will be generated in the `bin\tools` folder.
47+
48+
### To build `NEXTOR.SYS`
49+
50+
Run the `compile.bat` script in the `source\command\msxdos` folder. The file will be generated in the `bin\tools` folder.
51+
52+
### To build `COMMAND2.COM`
53+
54+
Run the `compile.bat` script in the `source\command\command` folder. The file will be generated in the `bin\tools` folder.
55+
56+
At this time there's no specific script (other than the original makefile) for building the original MSX-DOS command line tools.
57+
58+
### No Windows?
59+
60+
If your machine doesn't run Windows you can still build Nextor by using Xesco's [Nextor builder](https://github.com/xesco/NextorBuilder).

0 commit comments

Comments
 (0)