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.0k
views
1
answer
assembly - How to produce a minimal BIOS hello world boot sector with GCC that works from a USB stick on real hardware?
I have managed to produce a minimal boot sector that works with QEMU 2.0.0 Ubuntu 14.04 ... /cirosantilli/d47d35bacc9be588009f#file-lenovo-t400 See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
633
views
1
answer
assembly - Enable the boot loader to load the second sector of a USB
I am learning the assembly language. I wrote a simple bootloader. After testing it out, it didn't work. ... something wrong? Any suggestions? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
794
views
1
answer
assembly - Where is VPERMB in AVX2?
AVX2 has lots of good stuff. For example, it has plenty of instructions which are pretty much strictly ... functionally they are superseded. 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 - Relative performance of x86 inc vs. add instruction
Quick question, assuming beforehand mov eax, 0 which is more efficient? inc eax inc eax or add eax, 2 ... this is merely academic interest. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
971
views
1
answer
assembly - Is there a specification of x86 I/O port assignment?
I found some information on the web as follows, but incomplete. http://en.wikipedia.org/wiki/Input/ ... to download the specification? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
974
views
1
answer
assembly - Why are x86 registers named the way they are?
For example, the accumulator is named EAX and, while the instruction pointer is called IP. I also know that there ... names, but what is it? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
666
views
1
answer
assembly - What is a microcoded instruction?
I have seen a lot of literature referencing microcoded instructions. What are these and why they are used? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
876
views
1
answer
assembly - What is the purpose of segment registers in x86 protected mode?
I need to modify some dll, but i don't know, what excatly does segment registers (DS, SS, ...) in protected ... mov eax, dword ptr ds:[20037DA0] See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
759
views
1
answer
assembly - How does the GCC implementation of modulo (%) work, and why does it not use the div instruction?
I was trying to work out how to calculate modulo 10 in assembly so i compiled the following c code in gcc ... better than using the div operand. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
774
views
1
answer
assembly - Why did GCC generate mov %eax,%eax and what does it mean?
GCC 4.4.3 generated the following x86_64 assembly. The part that confuses me is the mov %eax,%eax. Move the ... a pointer of the correct type. 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 - What does ordered / unordered comparison mean?
Looking at the SSE operators CMPORDPS - ordered compare packed singles CMPUNORDPS - unordered compare packed singles ... unordered (FUCOM). 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 - What does `dword ptr` mean?
Could someone explain what this means? (Intel Syntax, x86, Windows) and dword ptr [ebp-4], 0 See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
788
views
1
answer
assembly - How to tell the length of an x86 instruction?
I was looking at the different instructions in assembly and I am confused on how the lengths of different operands ... its opcode will require? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
957
views
1
answer
assembly - NASM Error Parsing, Instruction Expected
I asked a similar question here but I changed assemblers and the question almost entirely changed, so in an effort to avoid ... mov ah,9 int 21h jmp short EndZTimerReport ; ; C...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.0k
views
1
answer
assembly - How to write an absolute target for a near direct relative call/jmp in MASM
To make a normal (near direct relative) call to an absolute address, in NASM or AT&T syntax you write call ... code I want to actually use. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.2k
views
1
answer
assembly - How to code a far absolute JMP/CALL instruction in MASM?
How can I write a far absolute JMP or CALL instruction using MASM? Specifically how do I get it to emit ... generate the right opcode (EA)? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
747
views
1
answer
assembly - How to read image file and display on screen in windows tasm dosbox
Im currently learning graphical programming in tasm using dosbox. Ive been using a bunch of loops to draw square blocks ... is a start. Pls help See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
953
views
1
answer
assembly - Why can't I move directly a byte to a 64 bit register?
Why can't I directly move a byte from memory to a 64-bit register in Intel x86-64 assembly? For instance, ... simpler way of doing this? Thanks. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
764
views
1
answer
assembly - Counting 1 bits (population count) on large data using AVX-512 or AVX-2
I have a long chunk of memory, say, 256 KiB or longer. I want to count the number of 1 bits in this ... single (thread on a single) core. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
783
views
1
answer
assembly - How do vararg functions find out the number of arguments in machine code?
How can variadic functions like printf find out the number of arguments they got? The amount of arguments obviously isn' ... . What's the trick? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
1.2k
views
1
answer
assembly - tasm: operand type does not match
.model small .stack .data buff label byte maxchar dw 50 readchar dw 0 name1 db 48 dup(0) m1 db 10,13,"enter ... int 21h mov ah, 4ch int 21h end See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
593
views
1
answer
assembly - Unexpectedly poor and weirdly bimodal performance for store loop on Intel Skylake
I'm seeing unexpectedly poor performance for a simple store loop which has two stores: one with a forward ... so trivial. Pull requests accepted. See Question&Answers more detail:...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
674
views
1
answer
assembly - What is the latency and throughput of the RDRAND instruction on Ivy Bridge?
I cannot find any info on agner.org on the latency or throughput of the RDRAND instruction. However, this ... and throughput is variable. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
756
views
1
answer
assembly - Which is a better write barrier on x86: lock+addl or xchgl?
The Linux kernel uses lock; addl $0,0(%%esp) as write barrier, while the RE2 library uses xchgl (%0),%0 ... available. When is lfence required? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
947
views
1
answer
assembly - What do the brackets mean in x86 asm?
Given the following code: L1 db "word", 0 mov al, [L1] mov eax, L1 What do the brackets ([L1]) represent? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
744
views
1
answer
assembly - What are IN & OUT instructions in x86 used for?
I've encoutered these to instructions IN & OUT while reading "Understanding Linux Kernel" book. I've looked ... ? Give some practical examples. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
698
views
1
answer
assembly - Does it make any sense to use the LFENCE instruction on x86/x86_64 processors?
Often in internet I find that LFENCE makes no sense in processors x86, ie it does nothing , so instead ... command SFENCE flushes Store-Buffer. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
0
votes
722
views
1
answer
assembly - Turn float into string
I have proceeded to state when I need to turn IEEE-754 single and double precision numbers into ... (betweenResult, decimalExponent); See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
assembly
Page:
« prev
1
...
8
9
10
11
12
13
14
15
16
17
18
...
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] javascript - Swipe left/right event on mobile devices, like a "click"
[2] Git/Github Redirecting subdirectories to other repositories
[3] awesome wm - AwesomeWM, Snapping in floating mode
[4] 使用vue怎么在所有元素加载完后执行?
[5] html - Get full path of selected folder with Desktop Flask application
[6] java - Files.move(...) throwing FileSystemException: The process cannot access the file be cause it is being used by another process
[7] DateTimeFormatter格式化Jun 15 16:52:22类型的时间
[8] ios滑动穿透问题?外边页面,弹窗里边均可滚动?
[9] python - unable to Train images from subfolders in facial recognition
[10] excel - VBA Date in Office 365
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
广告位招租
...