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
1.5k
views
1
answer
assembly - Error: Runtime exception ... store address not aligned on word boundary
I am trying to print binary digits of any integer input and store them in the array starting at the ... aligned on word boundary 0x100100ab See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
944
views
1
answer
assembly - How do labels and dd declarations work in NASM? What's the C equivalent?
I'm trying to understand what'd be the C equivalent of some nasm idioms like these ones: %define CONSTANT1 1 ... empty, what does that mean? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.2k
views
1
answer
assembly - x86 Multiplication with 3: IMUL vs SHL + ADD
I developed a program in x86-64 assembly which needs to iterate many times through the same operation: IMUL rdx ... stick with the IMUL command? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.1k
views
1
answer
assembly - GDB - Address of breakpoint
I scripted a simply assembly code, and now i'm trying to debug it using gdb. In gdb i typed : (gdb) ... program is still not loaded in RAM) See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
905
views
1
answer
assembly - How can I store an unknown number of inputs in different addresses in LMC (little-man-computer)?
I want to create a code that ask the user to input a number n, then ask for n inputs and store them all in ... DAT 001 N DAT 000 NBS DAT 000 See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
797
views
1
answer
assembly - What's the best way to remember the x86-64 System V arg register order?
I often forget the registers that I need to use for each argument in a syscall, and everytime I forget I ... google this question every time? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
967
views
1
answer
assembly - Multiplication with constant - imul or shl-add-combination
This question is about how we multiply an integer with a constant. So let's look at a simple function ... Primarily interested in Intel Haswell. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
888
views
1
answer
assembly - Which is faster, imm64 or m64 for x86-64?
After testing about 10 billion times, if imm64 is 0.1 nanoseconds faster than m64 for AMD64, The m64 seems to ... imm64 turned out to be faster. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
867
views
1
answer
assembly - Assembler use of segment register
Recently I was writing assembly and the program I wrote ran without any problems under DOSBox. Now I need to port ... PC says it runs MSDOS 6 See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.1k
views
1
answer
assembly - Confused by [ebp-0xc] instead of [ebp-4] in Art of Exploitation example
I am reading the book Hacking: The Art of Exploitation, 2nd Edition and in the simple C program #include <stdio. ... ret End of assembler dump. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.1k
views
1
answer
assembly - CMP in x86 with parentheses and address
I have the following line in x86 Assembly language that I don't know what it does... cmp %eax, ... clarification would be much appreciated! See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.0k
views
1
answer
assembly - Why do x86 FP compares set CF like unsigned integers, instead of using signed conditions?
The following documentation is provided in the Intel Instruction Reference for the COMISD instruction: Compares the double- ... a bit strange. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
861
views
1
answer
assembly - how many whole numbers in IEEE 754
I am trying to figure out how many different whole numbers exist in the ieee 754. The number I got was 1778384895 ... . Thanks a lot in advance. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.1k
views
1
answer
assembly - x86 instructions to set parity, overflow, & sign flags
We have the STC instruction to set the carry flag. Do we have similar instructions for parity, overflow, sign ... seems these don't exist! See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
983
views
1
answer
assembly - Loading an xmm from GP regs
Let's say you have values in rax and rdx you want to load into an xmm register. One way would be: movq xmm0 ... though! Is there a better way? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.8k
views
1
answer
assembly - Error: operand size mismatch for `movq'
I'm trying to compile the following assembly... movq $0x3534373536383235, 0x000000000055638f8 movq $0x55638f8, %rdi retq The first ... ~~~~~~~~~ See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
995
views
1
answer
assembly - How does the bios know what type of BPB is present?
If I want my bootloader to boot from a usb stick, I have to include a BPB. The usb stick is running in ... bios know where to update what value? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.0k
views
1
answer
assembly - Local labels in GNU assembler; gdb printing backtrace as though labels are functions
Two pieces of example code; first some C++ code calling into assembly: /* test1.cc */ #include <stdio.h> ... me in the right direction, please? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
850
views
1
answer
assembly - Sign or Zero Extension of address in 64bit mode for MOV moffs32?
Let's have an instruction MOV EAX,[0xFFFFFFFF] encoded in 64bit mode as 67A1FFFFFFFF (effective address-size is ... or B) 00000000FFFFFFFF ? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.1k
views
1
answer
assembly - Is Zero Register 'zr' in aarch64 essentially ground?
Recently started messing with AArch64 assembly and I noticed that it has an assigned register strictly for zero ... in different outcomes? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
829
views
1
answer
assembly - Why does Clang do this optimization trick only from Sandy Bridge onward?
I noticed that Clang does an interesting division optimization trick for the following snippet int64_t s2(int64_t a, int64_t ... or ICC do it? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
966
views
1
answer
assembly - What is the "EU" in x86 architecture? (calculates effective address?)
I read somewhere that effective addresses (as in the LEA instruction) in x86 instructions are calculated by the " ... by searching the web. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
915
views
1
answer
assembly - What would happen if a system executes a part of the file that is zero-padded?
I've seen in some posts/videos/files that they are zero-padded to look bigger than they are, or match "same ... 's the instruction set for 0x0? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
845
views
1
answer
assembly - How to use bits in a byte to set dwords in ymm register without AVX2? (Inverse of vmovmskps)
What I'm trying to achieve is based on each bit in a byte, set to all ones in each dword in a ... sandy bridge compatible so no avx2. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.0k
views
1
answer
assembly - Reason to use the carry bit and the overflow bit
I am taking an Introduction to Embedded Systems Class. As I was reading, I encountered an interesting question on ... on this issue please? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
893
views
1
answer
assembly - How to know if a register is a "general purpose register"?
I am trying to understand what criteria a register must have to be called a "general purpose register". I ... is a special purpose register? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
859
views
1
answer
assembly - Interrupts, Instruction Pointer, and Instruction Queue in 8086
Suppose an external interrupt request is made to 8086. Processor will handle the interrupt after completing the ... advance from the memory. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
849
views
1
answer
assembly - weird behaviour of code (corrupted draw) when using own keyboard interrupt `int 09h` handler
I'm working on an assignment for the univesity, we need to create a simple breakout/arkanoid clone, it is going ... int 21h Thanks for reading! See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
Page:
« prev
1
2
3
4
5
6
7
8
9
10
11
12
...
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] full-calendar日历组件怎么给每个日期添加一个默认数据?
[2] 如下,Android或者ios开发如何获取手机“设备号”,这个设备号指的是什么?
[3] Thinkphp6 在Docker中访问很慢,同样代码服务器上很快
[4] elment-ui的el-tree的子节点如何渲染一个表格进去
[5] vue.js - DrawerLayoutAndroid in vue-native
[6] MySQL 如何按照地理位置排序
[7] react-router重定向设置失效的问题?
[8] 使用maven创建mybatis项目时 报找不到mybatis-config.xml
[9] python - How to change support of multivariate integral to [0,1]^k using scipy.integrate.quad?
[10] geofirestore - Flutter getting data from firestore using collectionGroup
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
广告位招租
...