Archivo:Codepage-437.png

Contenido de la página no disponible en otros idiomas.
De Wikipedia, la enciclopedia libre

Codepage-437.png(304 × 144 píxeles; tamaño de archivo: 2 kB; tipo MIME: image/png)

)y&é╞╦σ¬.é0ü

Resumen

Descripción
English: Full character set of code page 437, as displayed by an IBM PC
Fecha
Fuente Trabajo propio
English: Created on QEMU.
Autor MattGiuca (discusión · contribs.) (Log)
Otras versiones

Licencia

Esta imagen no es elegible para estar sujeta a derecho de autor y por tanto está en el dominio público, porque consiste enteramente en información que es de propiedad común y carece de autoría original.

Reproduction instructions

Compile the following source code (which I wrote, MattGiuca (discusión · contribs.), under the same license as this image) using NASM to assemble into a binary. Boot with QEMU.

; PRINT ENTIRE OF CODE PAGE 437 TO THE SCREEN
; (NASM Source)

_start:
    ; Set to 0
    xor ax, ax
    xor bx, bx
    xor cx, cx
    xor dx, dx

    mov ah, 0x5 ; Select active display page al
    mov al, 1
    int 0x10

    mov bh, 1   ; Page number
    mov ah, 0x2 ; Set cursor position to (dl, dh)
    int 0x10

    xor ax, ax
    ; For each character (0-255)
    loop:
        mov ah, 0xa ; Write character al at cursor position
        mov cx, 1   ; Write only once
        int 0x10
        inc dl      ; x++
        ; Create a newline every 32 characters
        test dl, 0x1f   ; if dl & 0x1f == 0
        jnz nonewline
            inc dh      ; y++
            xor dl, dl  ; x = 0
        nonewline:
        mov ah, 0x2 ; Set cursor position to (dl, dh)
        int 0x10
        inc al      ; al++
        test al, al ; if al != 0 goto loop
        jnz loop

hang:
    jmp hang

; Count up size of each section
%assign text_length ($-$$)

; Pad the boot sector out to 512 bytes
; All bytes are padded with nop, except the last to (0x55 0xaa).
times 510 - text_length nop

db 0x55, 0xaa

Leyendas

Añade una explicación corta acerca de lo que representa este archivo

Elementos representados en este archivo

representa a

c12af8b7c6c071d77f9a72b88d5533f2b782d47c

144 píxel

304 píxel

Historial del archivo

Haz clic sobre una fecha y hora para ver el archivo tal como apareció en ese momento.

Fecha y horaMiniaturaDimensionesUsuarioComentario
actual13:07 7 jun 2010Miniatura de la versión del 13:07 7 jun 2010304 × 144 (2 kB)Blacki4{{Information |Description={{es|1=Carácteres del código de página 437}} |Source={{own}} |Author=Blacki4 |Date= |Permission= |other_versions= }}

La siguiente página usa este archivo:

Uso global del archivo

Las wikis siguientes utilizan este archivo: