hi. can someone give me a link with a tutorial on how to make graphics using the turbo assembly language? graphics like square, circle, lines, etc. thanks

Recommended Answers

All 2 Replies

Have you tried ths?

Your 16-bit assembly program can not call any of the win32 api graphics functions so you will have to bite the bullet and write it all yourself. I would suggest you get Turbo C graphics library and learn how to call those functions from your assembly program.

xor ah,ah
mov al,0x13
int 0x10

Graphic mode?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.