Hello, if you want to display a bitmap, you need to know
the file format, go to an search engine and search for
"file formats bmp".
You must read the header, then load the bitmap of that file.
The bitmap is flipped, you must turn it.
If it is a 320x200 you can load it to address A000h:0000h
directly, but note that the image is flipped

Please note that my example is for bitmaps not compressed.
There are bitmaps compressed in RLE for example.
You need to know how to decompresse it

The first time is more difficult, but then it is very simple

Keep coding in assembly
