Skip to content

Commit

Permalink
various fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
birdybro committed Apr 23, 2024
1 parent fcfb149 commit 78b62b6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 49 deletions.
2 changes: 1 addition & 1 deletion docs/basics/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ There is now an alternate method to do joystick player assignment manually based
2. For wired devices you would typically use the VendorID and ProductID.
3. For multiple devices that share the same VendorID and ProductID, you would want to use the USB port location.

The easiest way to get this information is to either [open up a console connection](../advanced/console/){target=_blank} or SSH into your MiSTer as root and run `killall MiSTer; /media/fat/MiSTer` to watch the debug output whenever you plug or unplug a usb device. Then you would enter that information into your MiSTer.ini with [the instructions provided in the section](https://github.com/MiSTer-devel/Main_MiSTer/blob/6bda023db86670baf1cfd6ead671d0849bb32d94/MiSTer.ini#L141-L162){target=_blank} that starts with `Permanently assign specific controller to specific player.`.
The easiest way to get this information is to either [open up a console connection](../advanced/console.md){target=_blank} or SSH into your MiSTer as root and run `killall MiSTer; /media/fat/MiSTer` to watch the debug output whenever you plug or unplug a usb device. Then you would enter that information into your MiSTer.ini with [the instructions provided in the section](https://github.com/MiSTer-devel/Main_MiSTer/blob/6bda023db86670baf1cfd6ead671d0849bb32d94/MiSTer.ini#L141-L162){target=_blank} that starts with `Permanently assign specific controller to specific player.`.

## Auto Fire

Expand Down
2 changes: 1 addition & 1 deletion docs/cores/console.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Here is a list of the console cores that are in the MiSTer Github Repository. `b
| [SMS](https://github.com/MiSTer-devel/SMS_MiSTer) | Sega Master System<br>Sega Game Gear<br>Sega SG-1000 | ./SMS<br>./SG1000 | | ✔️ |
| [SNES](https://github.com/MiSTer-devel/SNES_MiSTer) | Super Nintendo Entertainment System<br>Nintendo Satellaview<br>SPC Music Player | ./SNES | bsx\_bios.rom = Satellaview ROM | ✔️ |
| [Super_Vision_8000](https://github.com/MiSTer-devel/Super_Vision_8000_MiSTer) | Bandai Super Vision 8000 | ./Supervision8000 | | |
| [SuperVision](SuperVision_MiSTer) | Watara SuperVision | ./SuperVision | | ✔️ |
| [SuperVision](https://github.com/MiSTer-devel/SuperVision_MiSTer) | Watara SuperVision | ./SuperVision | | ✔️ |
| [TurboGrafx16](https://github.com/MiSTer-devel/TurboGrafx16_MiSTer) | NEC TurboGrafx-16 / PC Engine<br>CD-ROM² / Super CD-ROM²<br>Duo / TurboDuo<br>SuperGrafx<br>Arcade Card | ./TGFX16<br>./TGFX16-CD | cd\_bios.rom = BIOS Place in tgfx16-cd | Optional |
| [VC4000](https://github.com/MiSTer-devel/VC4000_MiSTer) | Interton VC4000<br>Acetronic MPU-1000<br>Occitane OC2000 | ./VC4000 | | |
| [Vectrex](https://github.com/MiSTer-devel/Vectrex_MiSTer) | Vectrex | ./Vectrex | | |
Expand Down
10 changes: 5 additions & 5 deletions docs/developer/mistercompile.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MiSTer uses a combination of various compiled binaries in the finished product.

These prerequisites are not completely strict, only some of them are. I'm using a specific linux distro (Ubuntu 20.04.5 LTS in WSL2), but you may find that other distros work for you, however your results may vary. Install the prereqs that I use for the Main MiSTer Binary and Linux kernel compilation this way:

```
```sh
sudo apt update && sudo apt upgrade -y
sudo apt-get install build-essential git libncurses-dev flex bison openssl libssl-dev dkms libelf-dev libudev-dev libpci-dev libiberty-dev autoconf liblz4-tool bc curl gcc git libssl-dev libncurses5-dev lzop make u-boot-tools libgmp3-dev libmpc-dev
```
Expand All @@ -29,7 +29,7 @@ The Main MiSTer binary is a good place to start for this guide. I will assume yo

Clone the Main_MiSTer repository:

```
```sh
git clone https://github.com/MiSTer-devel/Main_MiSTer.git
```

Expand All @@ -39,15 +39,15 @@ Then `cd` into that directory that was created and follow up with `make`.

Edit your sources file:

```
```sh
sudo nano /etc/apt/sources.list
```

Uncomment all of the lines which start with `deb-src` and then run the following:

```
```sh
sudo apt-get update
sudo apt-get build-dep linux
```

to be continued...
to be continued... If you would like to contribute to this article, please do! :)
41 changes: 0 additions & 41 deletions docs/developer/test.md

This file was deleted.

2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ nav:

# Developer reference. This is going to mostly mirror what is up on Github wiki already.
- Developer Reference:
#- Compiling for MiSTer: developer/mistercompile.md
- Compiling for MiSTer: developer/mistercompile.md
- Porting Cores: developer/porting.md
- Core Configuration String: developer/conf_str.md
- Top-level of Cores:
Expand Down

0 comments on commit 78b62b6

Please sign in to comment.