diff --git a/README.md b/README.md index e0c782c..e6f65cb 100644 --- a/README.md +++ b/README.md @@ -1,60 +1,68 @@ # mivip -The mivip emulator. -En este repositorio se encuentran el emulador y la wiki de los procesadores Mivip. Para ver sus especificaciones haga click [aqu铆](https://github.com/Mivip-org/specifications). +## The mivip emulator. -## Dependencias -+ glibc, uClibc u otra biblioteca est谩ndar -+ gcc, TDM-GCC, MinGW-gcc, bcc, DJGPP, OpenWatcom u otro compilador de C99 (Ansi C) -+ make o un procesador de Makefiles alternativo +In this repository you can find the emulator and the wiki for the Mivip processors. To see its specifications click here. -## Obtener las fuentes -Para obtener el c贸digo fuente del emulador tiene dos opciones: -- Clonar el repositorio: para clonar el repositorio, ingrese en su terminal uno de los siguientes comandos -```sh +## Dependencies + +glibc, uClibc, or other standard library +gcc, TDM-GCC, MinGW-gcc, bcc, DJGPP, OpenWatcom or other C99 compiler (Ansi C) +make or an alternative Makefiles renderer +Get the sources + +To obtain the source code of the emulator you have two options: + +Clone the repository: to clone the repository, enter one of the following commands in your terminal git clone "https://github.com/Mivip-org/mivip.git" -git clone "https://git.code.sf.net/p/mivip/code.git mivip" -``` -- Descargar los archivos: para descargar los archivos ingrese al URL https://github.com/Mivip-org/mivip y haga click en el bot贸n _"download"_ o, simplemente, haga click en el siguiente enlace: [:package:](https://github.com/Mivip-org/archive/master.zip) +git clone "https://git.code.sf.net/p/mivip/code.git myivip" +Download the files: to download the files, go to the URL https://github.com/Mivip-org/mivip and click on the "download" button or simply click on the following link: 馃摝 +Compile + +There are two ways to compile the mivip emulator: -## Compilar -Existen dos maneras de compilar el emulador mivip: -- **Din谩micamente (recomendada para uso personal, predeterminada):** Al compilar mivip din谩micamente la salida del proceso de compilaci贸n es una biblioteca compartida (dll, so). Esta biblioteca puede llegar a pesar apr贸ximadamente 12,027 KiB (12.316 bytes) y llama a la biblioteca est谩ndar en tiempo de ejecuci贸n. -- **Est谩ticamente (recomendada para distributi贸n):** Al compilar mivip est谩ticamente la salida del proceso de compilaci贸n es un ejecutable (a.out, elf). Este ejecutable puede llegar a pesar 715,460 KiB (732.632 bytes), aunque esto depende de la bibliotecas con las que se haya compilado ya que est谩n incorporadas a 茅l. +Dynamically (recommended for personal use, default): When compiling myivip dynamically the output of the compilation process is a shared library (dll, so). This library can weigh approximately 12,027 KiB (12,316 bytes) and calls the standard library at runtime. +Statically (recommended for distribution): When compiling myivip statically the output of the compilation process is an executable (a.out, elf). This executable can weigh 715,460 KiB (732,632 bytes), although this depends on the libraries with which it has been compiled since they are incorporated into it. +To compile the mivip emulator enter one of the following commands in your preferred terminal: -Para compilar el emulador de mivip ingrese uno de los siguientes comandos en su terminal preferida: -```sh cd ./mivip -# Compilar din谩micamente -make shared # o simplemente 'make' -# Compilar est谩ticamente +# Compile dynamically +make shared # or just 'make' +# Compile statically make static -``` - -## Instalar -### Debian GNU/Linux y derivados (Ubuntu, Linux Mint, Devuan, Bebian, Raspbian, etc.) -Para instalar mivip en el sistema operativo Debian, vaya a la secci贸n _"[releases](https://github.com/Mivip-org/mivip/releases)"_ del repositorio en GitHub y descarge el paquete deb de la 煤ltima versi贸n disponible o vaya a la secci贸n _"[files](https://sourceforge.net/projects/mivip/files/)"_ del proyecto en SourceForge y descarge el paquete deb de la 煤ltima versi贸n desde ah铆. -### Otras distribuciones GNU/Linux -Para instalar mivip en una distribuci贸n GNU/Linux que no sea Debian o uno de sus derivados, vaya a la secci贸n _"[releases](https://github.com/Mivip-org/mivip/releases)"_ del repositorio en GitHub y descarge el ejecutable del emulador. **Es posible** que el ya mencionado binario no funcione en su distribuci贸n. -### Microsoft Windows (>= 5.1.26) -Para instalar mivip en una versi贸n de Microsoft Windows mayor o igual a **5.1.26** (Microsoft Windows XP), vaya a la secci贸n _"[releases](https://github.com/Mivip-org/mivip/releases)"_ del repositorio en GitHub y descarge el instalador all铆 indicado. -### Microsoft Windows (< 5.1.26) -Para instalar mivip en versiones de Microsoft Windows menores a **5.1.26**, siga los pasos de instalaci贸n para sistemas DOS (a continuaci贸n). + +`` `sh +cd ./mivip +# Compile dynamically +make shared # or just 'make' +# Compile statically +make static +`` '' + +## Install +### Debian GNU / Linux and derivatives (Ubuntu, Linux Mint, Devuan, Bebian, Raspbian, etc.) +To install myivip on the Debian OS, go to the _ "[releases] (https://github.com/Mivip-org/mivip/releases)" _ section of the GitHub repository and download the latest version deb package available or go to the _ "[files] (https://sourceforge.net/projects/mivip/files/)" _ section of the project on SourceForge and download the latest version deb package from there. +### Other GNU / Linux distributions +To install mivip on a GNU / Linux distribution other than Debian or one of its derivatives, go to the _ "[releases] (https://github.com/Mivip-org/mivip/releases)" _ section of the repository at GitHub and download the emulator executable. ** It is possible ** that the aforementioned binary does not work on your distribution. +### Microsoft Windows (> = 5.1.26) +To install myivip on a version of Microsoft Windows greater than or equal to ** 5.1.26 ** (Microsoft Windows XP), go to the section _ "[releases] (https://github.com/Mivip-org/mivip/ releases) "_ from the repository on GitHub and download the installer indicated there. +### Microsoft Windows (<5.1.26) +To install myivip on Microsoft Windows versions less than ** 5.1.26 **, follow the installation steps for DOS systems (below). ### DOS (DR-DOS, QDOS, MS-DOS, PC-DOS, FreeDOS etc.) -Para instalar mivip en un sistema DOS, vaya a la secci贸n _"[releases](https://github.com/Mivip-org/mivip/releases)"_ del repositorio en GitHub y descarge el instalador o el archivo comprimido all铆 indicado que m谩s le convenga. -### Desde las fuentes -Para instalar mivip desde las fuentes previamente compiladas ingrese el siguiente comando en cualquier terminal. -```sh +To install myivip on a DOS system, go to the _ "[releases] (https://github.com/Mivip-org/mivip/releases)" _ section of the GitHub repository and download the installer or compressed file indicated there that suits you best. +### From sources +To install myivip from previously compiled sources enter the following command in any terminal. +`` `sh make install -``` -Esto instalar谩 **solamente** el binario del emulador. No instalar谩 ejemplos o asociar谩 MIMEtypes a mivip. Tampoco crer谩 un lanzador en el men煤 de aplicaciones. +`` '' +This will install ** only ** the emulator binary. It will not install samples or associate MIMEtypes with myivip. It will also not create a launcher in the application menu. -## Documentaci贸n -Toda la documentaci贸n sobre el emulador de mivip est谩 disponible en la [wiki de este repositorio](https://github.com/Mivip-org/mivip/wiki). Esta documentaci贸n est谩 disponible completamente en espa帽ol (Argentina) y parcialmente en ingl茅s (Estados Unidos). +## Documentation +All documentation about the mivip emulator is available on the [wiki for this repository] (https://github.com/Mivip-org/mivip/wiki). This documentation is available entirely in Spanish (Argentina) and partially in English (United States). -## Licencia -El emulador mivip y su c贸digo fuente para sistemas GNU/Linux est谩 liceniado bajo la licencia GPL v2.0. +## License +The mivip emulator and its source code for GNU / Linux systems is licensed under the GPL v2.0 license. -El emulador mivip y su c贸digo fuente para sistemas DOS y Microsoft Windows actualmente est谩 liberado bajo una licencia GPL v2.0, aunque no se facilitan las herramientas ni la documentaci贸n necesarias para compilarlo estas plataformas. +The mivip emulator and its source code for DOS and Microsoft Windows systems is currently released under a GPL v2.0 license, although the tools and documentation necessary to compile it are not provided on these platforms. -La documentaci贸n y la wiki del emulador mivip est谩n licenciados bajo la [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/). +The documentation and wiki for the mivip emulator are licensed under the [Creative Commons Attribution 4.0 International License] (http://creativecommons.org/licenses/by/4.0/).