- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在asm中画一条彩色线。我必须在 x86 intel linux 单元上使用 AT&T 语法。我已经了解了很多,但我想知道如何进入 VGA 模式或 X 模式,以及如何在屏幕上放置像素。标准 C 库中是否有相应的函数(如 printf)?
非常感谢您的帮助。 :)
<p>.bss # Declaring uninitialized variables</p>
<p>.data # Declaring initialized variables</p>
<p>.text # Actual assembly code and constants</p>
<pre><code>intro: .asciz "Draw a line in VGA\n\n"
clr: .asciz "Give a color \n"
optns: .asciz "red (1), blue (2), white (3)\n"
res .asciz "%d"
ent: .asciz "\n"
.global main # Tell kernel where to start (visible from outside)
</code></pre>
<p>main: pushl %ebp # Push base pointer
movl %esp, %ebp # Initialize base pointer
pushl $intro # Push the string address
call printf # Call the printf routine from C library
addl $8, %esp</p>
<pre><code>pushl $clr # push color question on the stack
call printf # Print it
subl $4, %esp # Reserve stack space for variable
leal -4(%ebp), %eax # Load address of stack var in eax
pushl %eax # Push second argument of scanf
pushl $rets # Push first argument of scanf
call scanf # Call scanf
movl 4(%ebp), %ecx # mov the result in ecx
cmpl $1, %ecx
je red
cmpl $2, %ecx
je blue
jne white
</code></pre>
<p>red: #... still working on this</p>
<pre><code> movl 0013h, %eax # enter 320x200x256 mode
int 10h # IS THIS CORRECT?
movl $0, %ebx # set X to 0
movl $0, %ecx # set Y to 0
call draw # Call line routine
movl 0003h, %eax # IS THIS CORRECT?
int 10h # return to text mode
movl $0, (%esp) # Make esp 0, indicating succesful termination
call exit # Exit the program
</code></pre>
<p>draw:<br/>
call putpixel
# pushl %ebp # Push the base pointer
# movl %esp, %ebp # Initialize base pointer
inc %ebx # increment X
inc %ecx # increment Y
cmpl $200, %ecx # check if Y => 200
jge end # if Y=> 200, jump to end
jmp draw # loop </p>
<p>putpxl: #has to put a pixel at (%ebx, %ecx) and return to draw
# should use the color from the main routine</p>
<p>end: movl %ebp, %esp # Remove local variables
popl %ebp # Remove base pointer
ret # return to main routine
</p>
最佳答案
您能做的最好的事情就是使用更高级别的库,例如 SDL 或 Allegro。这样,您的程序将在 X11 和非 VGA 帧缓冲区上运行(例如:基于 ARM 的嵌入式设备上的显示)。
Svgalib 允许对 VGA 和所谓的 SVGA 显卡进行编程。它的开发几年前就停止了。
访问 VGA 硬件有两种方法:
关于assembly - 有关 VGA 和 putpixel intel x86 asm AT&T 语法的帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6874846/
我是Intel pin工具的新手,最近开始研究pin工具。在教程中,描述了pin工具的模式: Sometimes, however, it can be useful to look at diffe
我是Intel pin工具的新手,最近开始研究pin工具。在教程中,描述了pin工具的模式: Sometimes, however, it can be useful to look at diffe
我得到了这份工作:1。产生一个正弦信号。2。使用 FFT 构建其频谱。首先,我为 visual studio 2010 安装了 Intel Parallel Studio XE 2011。在 vs 2
看起来 Intel 提供了许多 OpenCL 实现。 ArchWiki描述 OpenCL 实现。它说 beignet 和 intel-opencl 已弃用。那么,intel-compute-runti
我正在尝试通过阅读 Intel Intrinsics Guide 来开始使用 AVX512 内在函数但到目前为止我发现它没有定义命名数据类型或用于解释的伪代码语法。没有这样的定义,所谓的指南对我起码没
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 4 年前。 Improv
在 Android SDK 管理器中,我可以看到 3 种类型的 Intel Atom 图像。有人可以解释“Intel Atom Image”、“Google APIs Intel Atom Image
我写了这个 pintool: #include "pin.H" #include #include VOID Instruction(INS ins, VOID *v) { cou
我正在尝试了解 _mm256_permute2f128_ps() 的作用,但无法完全理解 intel's code-example . DEFINE SELECT4(src1, src2, contr
我正在开发一个性能关键应用程序,该应用程序必须移植到仅支持 MMX、SSE、SSE2 和 SSE3 的英特尔凌动处理器中。我以前的应用程序支持 SSSE3 和 AVX,现在我想将其降级为 Intel
我有最新版本的 Intel Pin 3.0 版本 76887。 我有一个支持 MPX 的玩具示例: #include int g[10]; int main(int argc, char **arg
我想研究和比较elf、SPARC和PA-RISC的可执行文件结构。 为了进行研究,我想在 Intel 机器 (Core2Duo) 上安装 OpenSolaris。 但我有一个基本的疑问,它会起作用吗?
我尝试使用 g++ 用 intel mkl 11.1 进行编译: g++ -m32 test.c -lmkl_intel -lmkl_intel_thread -lmkl_core -liomp5 -
我正在按照以下说明进行操作: https://software.intel.com/en-us/articles/building-boost-with-intel-c-compiler-150 Co
我正在尝试在我的 C 程序中使用内联汇编程序 __asm,使用 Intel 语法而不是 AT&T 语法。我正在使用 gcc -S -masm=intel test.c 进行编译但它给出了错误。下面是我
我是 OpenCL 的新手,目前对其性能有一些疑问。 我有 Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz + ubuntu + Beignet(Intel 开源 op
我在/ex 文件夹中有一个 main.f90。 f77 子程序文件在/ex/src 中。子程序文件再次使用 BLAS 和 LAPACK 库。对于 BLAS 和 LAPACK,我必须使用英特尔数学核心函
我的团队最近从 2015 年英特尔编译器(并行工作室)升级到 2018 年版本,我们遇到了一个链接器问题,让每个人都焦头烂额。 我有以下类(为简洁起见进行了适度编辑),用于处理子进程的包装以及与它们对
在最后几天,我观察到我无法解释的新工作站的行为。对这个问题做一些研究,INTEL Haswell architecture 中可能存在一个可能的错误。以及在当前的 Skylake Generation
我的 HAXM 安装存在问题。事情是这样的。每次尝试为我的计算机安装 HAXM 时,我都会收到此错误: 问题是,我的计算机支持虚拟化技术(见下图)。知道如何解决这个问题吗? 最佳答案 只需执行以下步骤
我是一名优秀的程序员,十分优秀!