Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Login
Remember
Register
Ask
Q&A
All Activity
Hot!
Unanswered
Tags
Users
Ask a Question
Ask a Question
Categories
All categories
Topic[话题] (13)
Life[生活] (4)
Technique[技术] (2.1m)
Idea[创意] (3)
Jobs[工作] (2)
Others[杂七杂八] (18)
Code Example[编程示例] (0)
Recent questions tagged assembly
0
votes
673
views
1
answer
assembly - Does a function with instructions before the entry-point label cause problems for anything (linking)?
This is really a linker / object-file question, but tagging with assembly since compilers never do this. ( ... true, though, for Nehalem. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.0k
views
1
answer
assembly - Why in NASM do we have to use square brackets ([ ]) to MOV to memory location?
For example if I have a variable named test declared like: test db 0x01 ;suppose the address is 0x00000052 If ... the first or second operands? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
939
views
1
answer
assembly - What's the real meaning of $$ in nasm
$$ is defined as current segment address in NASM. But what's the real meaning of it? I wrote two asm files ... with them? Thanks a lot! See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.1k
views
1
answer
assembly - Why don't x86 16-bit addressing modes have a scale factor, while the 32-bit version has it?
I'm trying to figure out a reason for the scale factor not being present in the x86 16-bit addressing modes ... 16- and 32-bit addressing modes See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
823
views
1
answer
assembly - Why does my data section appear twice in the compiled binary? Ubuntu, x86, nasm, gdb, reaelf
A prior related question was answered. Thank you! However this creates a new question for me. Why does nasm ... two different locations? Why? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
895
views
1
answer
assembly - Why "DIV EDX" in MASM always generates processor exception?
I've got that question on my Computer Architecture Exam on Informatics last semester : "Why 'DIV EDX' ... mechanism which generates exception? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
965
views
1
answer
assembly - How do GNU assembler x86 instruction suffixes like ".s" in "mov.s" work?
GNU assembler appears to have some means of controlling the alternative forms of the opcode being emitted for ... any relevant documentation. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
754
views
1
answer
assembly - Cannot call real mode C function from bootloader (NASM + GCC toolchain)
I am attempting to write my own OS kernel, and have been having some issues getting the linking to work properly ... Correct me if I'm wrong. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
782
views
1
answer
assembly - Hard to debug SEGV due to skipped cmov from out-of-bounds memory
I'm trying to code a few high-performance assembly functions as an exercise, and have encountered a weird segfault ... Thanks for all the help. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
943
views
1
answer
assembly - What comes after QWORD?
If 8 bits is a byte two bytes is a word four bytes is a dword 8 bytes is a qword What is a good name for 16 bytes? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
734
views
1
answer
assembly - What is the significance of operations on the register EAX having their own opcodes?
If you look at documentation of operations like cmp, test, add, sub, and and, you will notice that ... shaking off for compatibility reasons? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
798
views
1
answer
assembly - Should pointer comparisons be signed or unsigned in 64-bit x86?
When writing x86-64 user-space assembly and comparing two pointer values, should we use signed conditions such as ... top of the address space. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
839
views
1
answer
assembly - Embed assembler to manipulate 64-bit registers in portable C++
I have a simple (but performance critical) algorithm in C (embedded in C++) to manipulate a data buffer... the ... (please pardon the pun...)? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.0k
views
1
answer
assembly - On x64 Linux, what is the difference between syscall, int 0x80 and ret to exit a program?
I decided yesterday to learn assembly (NASM syntax) after years of C++ and Python and I'm already confused about the ... best way. I'm curious. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.0k
views
1
answer
assembly - Detail about MSR_GS_BASE in linux x86 64
I tried to figure out the details of MACRO current in Linux kernel. The final assembly code of current is: ... need some references about this. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
960
views
1
answer
assembly - Encoding ADC EAX, ECX - 2 different ways to encode? (arch x86)
I'm looking through an Intel Instruction Set manual, and it looks like there are 2 different forms of ADC ... attempts at googling it failed. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
787
views
1
answer
assembly - What's the easiest way to determine if a register's value is equal to zero or not?
I'm using x86 assembly with the Irvine library. What's the easiest way to check if a register value is equal to zero ... ebx = !!ebx would in C. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
943
views
1
answer
assembly - I don't understand how to use Interrupt 21, AH=0ah
My information is coming from here. The assignment asks for a program that reads in no more than 20 characters, ... '$' code ends end start See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
816
views
1
answer
assembly - What is the ".s" suffix in x86 instructions?
When I disassemble the .text sections of some binaries using objdump (with both AT&T and Intel syntaxes), I ... of instructions? Thank you. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
905
views
1
answer
assembly - Are ARM instructuons SWI and SVC exactly same thing?
ARM assembly has SWI and SVC instructions for entering into 'supervisor mode'. What confuses me is, why there ... architecture, and other after? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
829
views
1
answer
assembly - How to store a two-register mul result into memory
So let's say that I've got a result of mul in dx:ax, how can I save it to dword [ebx]?? I have the ... half) to two dwords pointed to by [ebx]. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
741
views
1
answer
assembly - Does a memory barrier acts both as a marker and as an instruction?
I have read different things about how a memory barrier works. For example, the user Johan's answer in this ... memory barrier. Am I correct? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
983
views
1
answer
assembly - Reverse byte order of EAX register
Example: 0xAABBCCDD will turn into 0xDDCCBBAA My program crashes, due to Access Violation exception right in the ... better solution for this? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.4k
views
1
answer
assembly - Convert string to int. x86 32 bit Assembler using Nasm
So I'm trying to convert a string to a number so I can add another number to it later. here is what I have ... ax, '0' add [Num1plusNum2], ax See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
826
views
1
answer
assembly - Why do x86 jump/call instructions use relative displacements instead of absolute destinations?
I am learning 8086 and there is one particular question which is bothering me and I have not been able to find ... this design choice in 8086? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.3k
views
1
answer
assembly - Cannot move 8 bit address to 16 bit register
I am trying to assign variable to register here is the code: ORG 100h var1 DB 10 ; var2 DB 20 ; MOV BX, ... apologise if it's a stupid question. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
774
views
1
answer
assembly - What is the compatible subset of Intel's and AMD's x86-64 implementations?
While learning x86-64 assembly, I came across my first incompatibility between Intel 64 and AMD64 implementations of ... or some third party See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
747
views
1
answer
assembly - Does Skylake need vzeroupper for turbo clocks to recover after a 512-bit instruction that only reads a ZMM register, writing a k mask?
Writing a ZMM register can leave a Skylake-X (or similar) CPU in a state of reduced max-turbo ... AVX512BW excludes KNL is irrelevant. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
Page:
« prev
1
...
5
6
7
8
9
10
11
12
13
14
15
...
24
next »
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question
Just Browsing Browsing
[1] syntax - Type int vs. [int ty] in sml
[2] airflow - How to force fail a dag after x number of time?
[3] 如何在当前js元素前插入其他元素?
[4] echarts4 饼图如何实现描边+间隙+外阴影效果?
[5] python 3.x - LabVIEW: How to implement bilateral filter over a image
[6] python - AttributeError at / 'Product' object has no attribute 'get_category_display'
[7] python - Keras Cnn Model wont improve Accuracy
[8] JavaScript 中文字符串之间是怎么比较大小的
[9] c++ - Why does QGraphicsScene ignore the left mouse button release event if the mousePressEvent method is not reimplemented in the widget?
[10] reactjs - Old laptop and React Js
2.1m
questions
2.1m
answers
60
comments
57.0k
users
Most popular tags
javascript
python
c#
java
How
android
c++
php
ios
html
sql
r
c
node.js
.net
iphone
asp.net
css
reactjs
jquery
ruby
What
Android
objective
mysql
linux
Is
git
Python
windows
Why
regex
angular
swift
amazon
excel
algorithm
macos
Java
visual
how
bash
Can
multithreading
PHP
Using
scala
angularjs
typescript
apache
spring
performance
postgresql
database
flutter
json
rust
arrays
C#
dart
vba
django
wpf
xml
vue.js
In
go
Get
google
jQuery
xcode
jsf
http
Google
mongodb
string
shell
oop
powershell
SQL
C++
security
assembly
docker
Javascript
Android:
Does
haskell
Convert
azure
debugging
delphi
vb.net
Spring
datetime
pandas
oracle
math
Django
联盟问答网站-Union QA website
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
广告位招租
...