Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6187749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T02:06:43+00:00 2026-05-24T02:06:43+00:00

I want to draw a square in Assembly language. I have ridden something about

  • 0

I want to draw a square in Assembly language. I have ridden something about int 10h. Does anybody know, how to do it? Please place here some piece of code to tell what can I use for drawing a square, or some quality tutorials. Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T02:06:44+00:00Added an answer on May 24, 2026 at 2:06 am

    Like Frederic Hamidi said, “int 0x10h” is an obsolete BIOS interface. If you’re interested in assembly, I would strongly encourage to AVOID 16-bit, DOS/Masm tutorials and learn on a more modern OS (like Linux).

    I’d highly recommend “Programming from the Ground Up”, by Jonathan Bartlett:

    http://savannah.nongnu.org/projects/pgubook/

    Nevertheless, if you REALLY want to draw a line (or a square) in 16-bit real mode (i.e. in DOS), here’s an example:

    http://lateblt.tripod.com/asm.htm

    ; Draw a line in a graphics mode
    
    ;By extension, draws a yellow line in the upper-left.
    ;A good example of how to efficiently use INC, CMP,
    ;and a conditional jump for repetitive tasks.
    
    mov ah,00h
    mov al,13h
    int 10h
    
    ;The above three lines just switch to 320x200 256-color VGA.
    
    mov ds,40960
    ;a000h = 40960 decimal
    mov ax, 44h
    ;44h is yellow! ;)
    mov bx,0000
    START:
    mov [bx],ax
    inc bx
    cmp bx,20
    JL START
    
    ;This waits until BX reaches 20, then exits!
    
    mov ah,004C  ;terminate program
    int 21h
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to draw some lines and rectangles on a panel. Sometimes it does
I want to draw this in my view to draw this line, I have
I have the following code to draw a square outline with the following code.
I have overridden the drawRect: in my UIView and I want to draw several
I just want to draw simple 2D objects like circle, line, square etc in
I want to draw a shape with square, diamond, and cross shape. The square
What I want to do is to draw a square where each vertex is
I want to draw DirectX content so that it appears to be floating over
I want to draw a shadow around a thumbnail in my software. It seems
I want to draw a HBITMAP onto HDC, I used StretchDIBits. It works fine.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.