Skip to content
Advertisement

Tag: screen

linux Makefile syntax for blank lines in screen output

i have this makefile: It results the below output: what i am looking to do is create a space between “prompt> make” and the first happening of gfortran. and ideally i would like the output on the screen to first print out the contents of my COMPILER_VERSION variable before the first gfortran happens, such that the output would look like

How to clear screen on protected mode

I’m using NASM for Linux and I’d like know how, in the protected mode, you can clear the screen. I found a solution using the int10h, but on the protected mode I can only use int80h. Thanks in advance. Answer You can write x1b[2J to the standard output so the terminal get cleared and fix the cursor position using x1b[H,

Advertisement