Why is this int $0x10 BIOS INT not working on Linux?
问题 I am not sure if I am doing something drastically wrong. I am learning assembly language in AT&T syntax on a linux machine with intel chip. I learned that INT 10H is used to invoke BIOS subroutines for various video purposes. I wrote this simple assembly code to clear the screen. .section .data data_items: .section .text .global _start _start: mov $6, %ah # to select the scroll function mov $0, %al # the entire page mov $7, %bh # for normal attribute mov $0, %ch # row value of the start point