04-sep-2007, 09:46 | #1 |
Marciano
|
Para el "consejo de sabios" del puerto paralelo
Indubablemente que todos conoceis la página de Advanced projects pero he encontrado en advancedCAB una utilidad que parece interesante para crear drivers al puerto paralelo...o eso me ha parecido leer....
Code:
Input/Output on hardware ports for DOS ====================================== 1 SYNOPSYS ========== portio lpt? portio ADDRESS_HEX portio lpt? VALUE_HEX portio ADDRESS_HEX VALUE_HEX 2 DESCRIPTION ============= The `portio' utility can be used to drive the parallel port or any other hardware device which use the PC ports. If a lpt ports (lpt1,lpt2,lpt3) or an hexadecimal address is specified the port is read and the read value is printed on the screen. If also a value is specified the port is written with the specified value. All the address and all the values are in the hexadecimal format. The address of the lpt ports are detected using the BIOS informations at the memory address 408h. 3 EXAMPLES ========== Set all the parallel port data bits: portio lpt1 ff Clear all the parallel port data bits: portio lpt1 0 Set all bit on the port 80h portio 80 ff Set all the parallel port data bits in the config.sys: device=c:\mame\portio.exe lpt1 ff 4 COPYRIGHT =========== This file is Copyright (C) 2002 Andrea Mazzoleni. Pues eso, no se si sirve para algo pero me ha parecido interesante..... Un poco más de información aqui: http://advancemame.sourceforge.net/cab-readme.html ;-) PD: lo que yo andaba buscando era algo parecido a ARCMON.SYS pero no sé si lo he encontrado porque no me entero de mucho en inglés.... |
04-sep-2007, 11:36 | #2 |
Administrador
|
Pues creo, sebastia2000, que de esto se habló hace tiempo y al final de ahí surgió el driver para MS-DOS del IPP de Manofwar. Busca en el foro que hay un hilo.
Un saludo. |
04-sep-2007, 14:09 | #3 |
Marciano
|
Sebastian creo que lo que buscas está en esa misma página AdvanceVideo, dice que es como el Powerstrip, pero para todos los sistemas operativos. Imagino que será la parte del AdvanceMame/AdvanceMenu que hace que el video salga a los 15khz.
Saludos |
04-sep-2007, 14:42 | #4 | ||
Marciano
|
Segun esto que dices, manofwar, no necesito arcmon.sys...... y segun el code que adjunto parece que con una llamada del config y otra en el autoexec ya está!
Code:
===================== Video control for DOS ===================== 1 SYNOPSYS ========== video [/s MODE] [/e] [/d] [/r] [/l PCXIMAGE] 2 DESCRIPTION ============= The `video' utility can be used to control the video output of the PC in DOS. 3 OPTIONS ========= /l IMAGE Load a PCX image. The image must be a PCX image in the 320x200 8bit format. The image is displayed using the standard VGA 320x200 256 color video mode number 13h. /s MODE Set an arbitrary video mode. The MODE is expressed as an hexadecimal BIOS number. The most common modes are: 1 - Text mode 40x25 16 color. 3 - Text mode 80x25 16 color. 13 - Graphics mode 320x200 256 color. /d Disable the hardware video signal. /e Enable the hardware video signal. /r Reset the video board using the BIOS startup function. 4 EXAMPLES ========== A good configuration for Arcade monitors/TVs may be: In CONFIG.SYS: device=c:\cab\video.exe /l c:\cab\video.pcx device=c:\cab\vga.exe /l /d /c c:\cab\vga.rc ...other commands... In AUTOEXEC.BAT: ...other commands... c:\cab\vga /e ...final application... 5 COPYRIGHT =========== This file is Copyright (C) 2002 Andrea Mazzoleni. y exactamente aqui.... Quote:
Voy a probarlo. PD: Antes de probarlo.... Veo que llama a un fichero Quote:
Es que yo soy un seguidor de BUBU Si algo funciona, no lo toques y me da miedo cagarla.... GRaciassssss Editado por sebastia2000 en 04-sep-2007 a las 15:25. |
||
04-sep-2007, 16:01 | #5 |
Marciano
|
Ese archivo que falta es el archivo de configuración del vídeo, cámbialo por standard.rc que es el de un monitor arcade, si es el caso.
Saludos |