跳至內容

File:Codepage-437.png

頁面內容不支援其他語言。
這個檔案來自維基共享資源
維基百科,自由的百科全書
Codepage-437.png (304 × 144 像素,檔案大小:2 KB,MIME 類型:image/png


摘要

描述
English: Full character set of code page 437, as displayed by an IBM PC
日期
來源 自己的作品
作者 MattGiuca (對話 · 貢獻) (Log)
其他版本
Image extraction process This image has an extracted file: Codepage-437 (cropped).png.
lang=zh-mo
PNG開發
InfoField
 本PNG 點陣圖使用不明工具創作 
English: Created on QEMU.

授權條款

本幅螢幕擷圖不包含部份或全部的著作權保護程式,或其作者已將該程式以自由授權發佈,並遵循維基共享資源的授權指南。您可根據其授權自由使用本幅截圖。 自由軟體授權:

此檔案不具有著作權,屬於公有領域,因為其所包含之内容均為公有資訊,不包含任何原創内容

:如果本幅截圖並非直接顯示出該程式碼本身的執行結果,例如非該程式有關之圖文,那麼這部份的授權必需分別指明。


العربية  български  català  čeština  kaszëbsczi  dansk  Deutsch  Ελληνικά  English  British English  Esperanto  español  فارسی  suomi  français  galego  עברית  हिन्दी  magyar  Bahasa Indonesia  italiano  日本語  한국어  македонски  മലയാളം  Bahasa Melayu  norsk bokmål  Nederlands  norsk  polski  português  português do Brasil  română  русский  sicilianu  Simple English  slovenčina  slovenščina  svenska  தமிழ்  ไทย  Türkçe  українська  Tiếng Việt  中文  中文(简体)  中文(繁體)  中文(臺灣)  +/−

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

說明

添加單行說明來描述出檔案所代表的內容

在此檔案描寫的項目

描繪內容

著作權狀態 繁體中文 (已轉換拼寫)

多媒體型式 繁體中文 (已轉換拼寫)

image/png

校驗和 繁體中文 (已轉換拼寫)

c12af8b7c6c071d77f9a72b88d5533f2b782d47c

資料大小 Chinese (Hong Kong) (已轉換拼寫)

2,513 位元組

144 像素

304 像素

檔案歷史

點選某个日期/時間檢視對應時刻的檔案。

日期/時間縮⁠圖大小用戶備⁠註
目前2010年6月7日 (一) 13:07於 2010年6月7日 (一) 13: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= }}

下列3個頁面有用到此檔案:

全域檔案使用狀況

以下其他wiki使用了這個檔案: