Skip to content

Commit 171b3e4

Browse files
committed
README: process through remark
1 parent 5e0ac2f commit 171b3e4

File tree

1 file changed

+20
-16
lines changed

1 file changed

+20
-16
lines changed

README.md

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
These programs, ps2client & fsclient, are command line tools used for interacting with a ps2 system running ps2link and/or ps2netfs. It will allow you to send various commands as well as respond to requests for data. This program was written and tested under Linux, Cygwin and Mac OS X but should compile on any reasonably unixlike system.
1010

1111
### BUILDING THE CLIENTS
12+
1213
Building and installing is very simple:
1314

1415
`make clean; make install`
@@ -25,80 +26,83 @@ These options can be used as follows:
2526
`make clean; make PREFIX=/new/path/prefix install`
2627

2728
### BUILDING WINDOWS BINARIES
29+
2830
For building windows binaries on Unix system, you need to setup mingw cross-compiler and win32 threads.
2931
Build command:
3032

3133
`make -f Makefile.mingw32`
3234

3335
### BASIC CLIENT USAGE
36+
3437
Basic usage:
3538

3639
```txt
3740
ps2client [-h hostname] [-t timeout] <command> [arguments]
3841
fsclient [-h hostname] <command> <arguments>
3942
```
4043

41-
#### \[-h hostname\]
44+
#### \[-h hostname]
4245

4346
The address of the remote ps2. This can be an IP or a hostname. If none is given, the environment variable `$PS2HOSTNAME` will be checked for a valid address. If this variable isn't set, a default of 192.168.0.10 will be used.
4447

45-
#### \[-t timeout\]
48+
#### \[-t timeout]
4649

4750
An idle timeout period in seconds that the client will wait before exiting. This is useful to allow a script to continue after calling ps2client to send a command to ps2link or ps2netfs.
4851

4952
### PS2LINK COMMANDS
50-
- `reset`
53+
54+
* `reset`
5155

5256
Send a reset request to ps2link.
5357

54-
- `execiop <filename> [arguments]`
58+
* `execiop <filename> [arguments]`
5559

5660
Tell ps2link to load and execute a file on the IOP.
5761

58-
- `execee <filename> [arguments]`
62+
* `execee <filename> [arguments]`
5963

6064
Tell ps2link to load and execute a file on the EE.
6165

62-
- `poweroff`
66+
* `poweroff`
6367

6468
Send a poweroff request to ps2link.
6569

66-
- `scrdump`
70+
* `scrdump`
6771

6872
Tell ps2link to dump exceptions to the screen.
6973

70-
- `netdump`
74+
* `netdump`
7175

7276
Tell ps2link to dump execetions to the network console.
7377

74-
- `dumpmem <offset> <size> <filename>`
78+
* `dumpmem <offset> <size> <filename>`
7579

7680
Dump the contents of memory into a file.
7781

78-
- `startvu <vu>`
82+
* `startvu <vu>`
7983

8084
Tell the specified vector unit to start operation.
8185

82-
- `stopvu <vu>`
86+
* `stopvu <vu>`
8387

8488
Tell the specified vector unit to stop operation.
8589

86-
- `dumpreg <type> <filename>`
90+
* `dumpreg <type> <filename>`
8791

8892
Dump the registers of a given type into a file.
8993

90-
- `gsexec <size> <filename>`
94+
* `gsexec <size> <filename>`
9195

9296
Tell ps2link to load and send a file to the GS.
9397

94-
- `writemem <offset> <size> <filename>`
98+
* `writemem <offset> <size> <filename>`
9599

96100
Write the contents of a file into memory.
97101

98-
- `iopexcep`
102+
* `iopexcep`
99103

100104
I really don't know! OH NOES!!
101105

102-
- `listen`
106+
* `listen`
103107

104108
Listen to the ps2link network console.

0 commit comments

Comments
 (0)