Codepage-437.png(304 × 144 픽셀, 파일 크기: 2 KB, MIME 종류: image/png)

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

파일 설명

설명
English: Full character set of code page 437, as displayed by an IBM PC
날짜
출처 자작
English: Created on QEMU.
저자 MattGiuca (토론 · 기여) (Log)
다른 버전

라이선스

이 저작물은 완전히 공공의 재산으로서의 정보로만 구성되어 있으며, 창작성이 있는 요소가 포함되어 있지 않아 저작권 보호에 부적격하므로 퍼블릭 도메인입니다.

Reproduction instructions

Compile the following source code (which I wrote, MattGiuca (토론 · 기여), 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

설명

이 파일이 나타내는 바에 대한 한 줄 설명을 추가합니다

이 파일에 묘사된 항목

다음을 묘사함

c12af8b7c6c071d77f9a72b88d5533f2b782d47c

2,513 바이트

144 화소

304 화소

파일 역사

날짜/시간 링크를 클릭하면 해당 시간의 파일을 볼 수 있습니다.

날짜/시간섬네일크기사용자설명
현재2010년 6월 7일 (월) 22:072010년 6월 7일 (월) 22:07 판의 섬네일304 × 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= }}

다음 문서 1개가 이 파일을 사용하고 있습니다:

이 파일을 사용하고 있는 모든 위키의 문서 목록

다음 위키에서 이 파일을 사용하고 있습니다: