2024-06-21
Open
1 기본 헤더 형식 star
2024-06-21 Open
Tasks

헤더파일에 기본적으로 스펙을 담아둔다. 항상 최상위에 달아두기.

#:EL-GWBASIC(언어타입:필수),EP-CP949(글꼴타입:선택),GT-EGA(화면타입:선택) 등등

이런 식으로 해두면 되지 않을까?
해당 세팅으로 모듈을 불러와서 가상 머신형태로 구성하고 쓰면 되겠지?

그리고 역시 주석문도 있으면 좋겠지?
GWB에서 주석문은 REM 명령으로 했었지.

Issue Sharer
Comment 1

    • Markdown help
    • Header
    • Text Style
    • Link
    • List
    • Checklist
    • Image
    • Blockquote
    • Code
    • Table
    • Short Link
    • Markdown Input
      Markdown Output
      # This is an H1
      ## This is an H2
      ### This is an H3
      
      # This is an H1 ## This is an H2 ### This is an H3
    • Markdown Input
      Markdown Output
      *This is an italic*
      **This is an bold**
      ~~This is an strike~~
      
      *This is an italic* **This is an bold** ~~This is an strike~~
    • Markdown Input
      Markdown Output
      - Red
          1. White
          2. Blue
      - Green.
      
      - Red 1. White 2. Blue - Green
    • Markdown Input
      Markdown Output
      - [ ] Todos
          - [x] To do A
          - [ ] To do B
          - [ ] To do C
                          
      • Todos
        • To do A
        • To do B
        • To do C
    • Markdown Input
      Markdown Output
      ![title](https://repo.yona.io/assets/images/ico-like-small.png "Yobi")
      
      ![title](/assets/images/ico-like-small.png "Yobi")
    • Markdown Input
      Markdown Output
      > Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
      >
      > Aenean commodo ligula eget dolor.
      
      > Lorem ipsum dolor sit amet, consectetuer adipiscing elit. > > Aenean commodo ligula eget dolor.
    • Markdown Input
      Markdown Output
      `function test() {console.log("hello world");}`
      
      ```javascript
      function test() {
        console.log("hello world");
      }
      ```
      
      `function test() {console.log("hello world");}` ```javascript function test() { console.log("hello world"); } ```
    • Markdown Input
      Markdown Output
      | Default      | Align center | Align right |
      | ------------ | :----------: | ------: |
      | Carrot       | Red          | 1,000   |
      | Banana       | Yellow       | 32,000  |
      
      | Default | Align center | Align right | | ------------ | :----------: | ------: | | Carrot | Red | 1,000 | | Banana | Yellow | 32,000 | Also, you can copy & paste table from excel sheet
    Notification receivers
    Drag & Drop files here to upload.
    Tasks

    Graphic Type [GP]

    MDA - 80*25 문자열 출력 타입

    https://namu.wiki/w/MDA

    Monochrome Display Adapter

    단색조. IBM 최초의 그래픽 카드 출력(내장 글꼴롬)
    MDA는 80자×25줄 단색조 문자 화면을 지원하며, 밑줄, 깜빡임, 강조, 반전 등 특수 효과도 지원한다.
    MDA는 9×14 픽셀

    MDA는 4색까지 표현할 수 있었다. 이는 MDA의 색상 입출력이 비디오 신호 핀과 강도 신호 핀 등 2개의 핀으로 구성되었기 때문이다. 비디오 신호는 색의 ON/OFF를 담당했으며, 강도 신호는 색의 강도를 담당했다. 이론적으로 이 둘을 조합해서 검은색, 어두운 단색, 밝은 단색, 더 밝은 단색을 표현할 수 있다. 그러나 이 4색을 지원하는 모니터는 극히 희귀했고 3색(검은색, 어두운 단색, 밝은 단색)만을 지원하는 것이 보통이었다.

    Reply
  • Assigned kadrians self-assigned this issue 02-04
Add a comment