Questions tagged [assembly]
The assembly tag has no summary.
4 questions
0
votes
0
answers
152
views
What are all of the registers inside the GPU called?
I have a GeForce GTX 980 GPU and wanted to know their register names and what they do so I can code my game in NASM for the physics, logic and communicating with the GPU Assembler. However, I haven't ...
2
votes
2
answers
1k
views
Using Bresenham's circle algorithm (or another alternative algorithm) to draw an arc
I'm trying to create some graphic functions for a ZX Spectrum (Z80) machine in assembler. I already have the basics except for the arc.
I need a fast algorithm to draw an arc, ideally one that uses ...
24
votes
4
answers
31k
views
What does GPU assembly look like?
I have played around with CPU assembly programming like Nasm, Tasm or Masm, but I'm really curious to know how GPU works now.
However, i'm quite confused when I look on internet. I've heard about Cuda ...
3
votes
1
answer
3k
views
How to get assembly code from GLSL Shader
I am new to optimizing shader code. Now that I have written an "optimzation", I want to make sure that it really speeds things up and is not just an unreadable version of what I intend to do. For this,...