In terms of a computer system, low-level refers to the components that appears lower in the stack of system layers.
0
votes
1answer
27 views
Filtering packets with Packet MMAP?
I'm using packet_mmap to capture all packets in the system, but there doesn't seem to be any way to interfere with the rest of the OS getting them as well. I want to be able to have exclusive control ...
4
votes
1answer
46 views
Instruction Level Profiling: The Meaning of the Instruction Pointer?
When profiling code at the the assembly instruction level, what does the position of the instruction pointer really mean given that modern CPUs don't execute instructions serially or in-order? For ...
1
vote
0answers
46 views
How are GUI's really made?
My question is
Gui libraries like Qt and lets say for Windows operating systems
how do they create all those graphical user interfaces(windows etc).
Does each operating system gives API's or ...
0
votes
4answers
42 views
Beginner JavaScript: using src
EDIT:[Honestly this works fine you can read my edit comment below.]
So I am very new to JavaScript. This book I have tells me that I can write the script code in another file that has a .js ...
-1
votes
2answers
65 views
Best Microcontroller with these goals in mind [closed]
recently I wanted to start learning more low level types of programming from OS kernels to device drivers to embedded systems. A goal for me is to get a computer with no software at all on it to ...
-2
votes
0answers
25 views
Order of micro-instructions [closed]
I'm making an assembly simulator in C++ for an assignment and I need to know in what order to put these since the order is very important. So my question is:
In what order should these ...
-3
votes
1answer
49 views
What is the absolutely fastest way to output a signal to external hardware in modern PC? [closed]
I was wondering, what is the absolutely fastest way (lowest latency) to produce external signal (for example CMOS state change from 0 to 1 on electrical wire connected to other device etc.) from PC, ...
0
votes
1answer
24 views
Do low-level programs run faster inherently, or--since everything is machine code in the end--am I misunderstanding?
If I need to rephrase:
Are programs written in low-level languages essentially better performance-wise, or is there really no difference in the end?
-1
votes
1answer
32 views
Caesar Cipher program not writing output to screen
I am trying to write a caesar cipher program using assembly. There is no error, but when it runs nothing is displayed and it quits silently. This is what I wrote..
.MODEL small
.STACK 64
.DATA
...
1
vote
2answers
40 views
Rails 3: Where to put a Rails.cache.fetch “cache warmer” call?
Assume you want to do some low level caching in Rails (with memcached, for example) and that you'd like to have just 1 call somewhere in your app, like...
Rails.cache.fetch('books', expires_in: ...
4
votes
1answer
49 views
Is there a neutral element in IEEE754 with regards to addition
Consider the following code snippet
double id = ?;
double res;
long unsigned *res_u = (long unsigned*)&res;
long unsigned i;
for (i = 0; i < (long unsigned)-1; i++){
double *d1 = ...
0
votes
1answer
100 views
Total Newbie. Google Maps API v3 Turn Markers On Below a certain Zoom Level
I am super green and need some help for a project. With my limited knowledge of html and javascript, I was able to make a google map with a number of locations. Here is my code (forgive me if it is ...
0
votes
0answers
71 views
Android: Stop all I2C traffic on a given bus from user space?
Short of rewriting my (userland) device driver as a kernel module, is there any user space mechanism that would guarantee all communication on a given I2C bus is halted? I need the ability to halt all ...
0
votes
1answer
190 views
WPF Listview does not scroll (with mouse wheel) when Application not in focus
I have a WPF app (written in C#) which has a Listview control which scrolls perfectly with the mouse wheel when the app is in focus.
However when the app is not in focus, even when the mouse pointer ...
3
votes
3answers
179 views
I want to create a simple assembler in C. Where should I begin? [duplicate]
I've recently been trying to immerse myself in the world of assembly programming with the eventual goal of creating my own programming language. I want my first real project to be a simple assembler ...
2
votes
1answer
69 views
How to load the largest integer possible in one memory operation?
I'm building a small bytecode VM that will run on a variety of platforms including exotic embedded and microcontroller environments.
Each opcode in my VM can be variable length(no more than 4 bytes, ...
2
votes
2answers
137 views
Learning programming low-level [closed]
I have been programming C# quite a while, and I want to try something new.
I want to learn to program more "low-level" (By this I mean a Middle-level language), and to learn whats happening under the ...
0
votes
1answer
258 views
Execution time, high- vs. low-level programming language [closed]
When talking about execution time between high- and low-level programming languages I often hear that low-level languages performs a bit better than high-level.
Of course a low level can perform ...
0
votes
1answer
40 views
Monitoring RAW disk activity
Is there a way to monitor what exactly hard drive does while doing certain high-level operations such as
Directory.CreateDirectory()
File.Exists()
etc.
I am talking about .NET programming, and as ...
0
votes
1answer
94 views
v4l2 multiple devices trouble
I open two webcams using v4l2. With 30 fps everything works fine. With 60 fps, begining troubles. FPS on first cam about 20, FPS on second cam about 0-3. I try to run in different threads(and ...
2
votes
1answer
92 views
How can return value be modified?
I have a routine calling gSoap API function soap_malloc. But the program gives me a segmentation fault whenever I try to access the memory allocated by soap_malloc. When I use gdb to debug it. I find ...
0
votes
1answer
113 views
Programmatically zero filling a harddrive [closed]
I've recently decided to write a tool to zero-fill harddrives. Unfortunately, I'm not really sure where to begin. After doing some research, I discovered their are several windows functions that can ...
0
votes
2answers
238 views
C, write system call, writing int
I found this source in Jon Erickson's book, Hacking: The Art of Exploitation,
userid = getuid(); // get the real user ID
// Writing data
if(write(fd, &userid, 4) == -1) // write user ID before ...
0
votes
0answers
54 views
High Level vs Low Level for beginners [closed]
Since programming concepts are language independent, which type of language will work best to aid in the understanding of the fundamentals of programming (i.e. HOW to program) e.g. flow-control, ...
1
vote
4answers
157 views
C “double to num” conversion code: why is it written like this?
I don't understand how the following C conversion functions work (and why they're written this way); I'm fairly certain that the original author knew what he was doing:
typedef union TValue {
...
0
votes
0answers
113 views
Add fractions input in form of SEM in little man computer
I want to develop a bunch of solved examples for Little Man Computer. Having written code for addition and subtraction of normal numbers, now I want to write a program for adding two fractional ...
8
votes
2answers
218 views
Use case for low-level os.open, os.fdopen, and friends?
In Python 3.2 (and other versions), the documentation for os.open states:
This function is intended for low-level I/O. For normal usage, use the built-in function open(), which returns a file ...
0
votes
0answers
86 views
Intercepting regular low level mknod operations in FUSE
With lots of support regarding FUSE (Filesystem in Userspace) with high level operations classified in fuse_operations Struct, together with it is tons of examples that relates how fuse_operations ...
0
votes
0answers
47 views
Which language could be used to receive individual keystrokes? and how could the results from this be imported to python? [duplicate]
Possible Duplicate:
Python read a single character from the user
I am undertaking the crazy task of building an 8bit CPU in python on my pc. I already have the CPU up and running, but wish ...
5
votes
4answers
110 views
What exactly happens when delete my_object; is executed? Is all other memory shifted to the left by sizeof(MyClass)?
For the sake of this question I will picture memory as a simple array of bytes, and I will be talking about heap memory because it is possible to dynamically allocate it.
Lets say that I am ...
0
votes
0answers
50 views
Networked bootloader
I'd like to extend the concept of Wake on LAN to be able to select the OS of a dual-boot computer with a packet across the network. Ultimately this would be used to boot a group of servers and select ...
5
votes
2answers
205 views
Can a Java method have more than 255 local variables?
The iload Java opcode is used to push a value from the local variable array (LVA) onto the operand stack.
This opcode takes a single byte as a parameter ...
-2
votes
1answer
301 views
How to use JE, JBE, JB in assembly? I am trying to do an IF statement
I am working with msx88. I am trying to make a simple IF statement with these commands JE, JBE, JB but an error show up when i try to run it in the line where the jump is declared.
ORG 1000H
NUM0 ...
1
vote
0answers
265 views
How to sum up values of an array in assembly?
I have been trying to create a program which can sum up all the values of an "array" in assembly, I have done the following:
ORG 1000H
TABLE DB DUP(2,4,6,8,10,12,14,16,18,20)
FIN DB ?
TOTAL DB ?
MAX ...
16
votes
4answers
367 views
What is an “internal address” in Java?
In the Javadoc for Object.hashCode() it states
As much as is reasonably practical, the hashCode method defined by class Object does return distinct integers for distinct objects. (This is ...
2
votes
2answers
159 views
Load 64-bit integer constant via GNU extended asm constraint?
I've written this code in Clang-compatible "GNU extended asm":
namespace foreign {
extern char magic_pointer[];
}
extern "C" __attribute__((naked)) void get_address_of_x(void)
{
asm ...
2
votes
1answer
275 views
Where can I find a reference for what every bit of the CorFlags value means?
I'm messing around with some rather low level things and trying to determine why I get different outputs with the CorFlags.exe utility. For reference, the outputs are as so:
$ corflags test2.exe
...
2
votes
1answer
176 views
somehow working with unsigned bytes in Java
I'm trying to create a Java program that writes files for my Adruino to read. The Arduino is a simple 8 bit microcontroller board, and with some extra hardware, can read text files from SD cards, byte ...
0
votes
1answer
119 views
own OS - read out cd rom directory content [closed]
I want to programming my own "learning" mini Operating System.
So I switch fro 16 Bit to 32 Bit protected mode after boot, doing GDT stuff, and so on.
Now, I would read out the CD-Rom contents ...
0
votes
2answers
73 views
Classifying the BASIC language [closed]
How would you classify BASIC (i.e., Beginner's All-purpose Symbolic Instruction Code)?
It is described as a collection of high-level languages, but is that relative to C (which I realize came 8 years ...
0
votes
0answers
15 views
Intersocket communication profiling in SMP x86 platforms
I would like to estimate number of intersocket access in my application (benchmark RandomAccess). I am using Westmere, SandyBridge and Bulldozer platforms. Does anybody know any way how to do this?
...
0
votes
2answers
91 views
How do timers and delays work on low level
I cannot really find anything interesting concerning this question, but I've been wondering for quite some time now how timers and delays in any programming language work at low level.
As far as I ...
0
votes
0answers
237 views
Fast screenshot ios
In my project I have to make a screenshot of the screen and apply blur to create the effect of frosted glass. Content can be moved under the glass and blured picture changed.
I'v used ...
0
votes
0answers
77 views
Separating decimal value to least & most significant byte
I'm working on some 65802 code (don't ask :P) and I need to separate a 16-bit value into two 8-bit bytes to store it in memory. How would I go about this?
EDIT:
Also, how would I take two similar ...
0
votes
3answers
287 views
What has a better performance: multiplication or division?
Which version is faster ?
x * 0.5
or
x / 2
Ive had a course at the university called computer systems some time ago. From back then i remember that multiplying two values can be achieved with ...
1
vote
1answer
122 views
Socket queue (Twitter streaming as a reference)
I just found out Twitter streaming endpoints support detection of slow connections somehow.
Reference: https://dev.twitter.com/docs/streaming-apis/parameters#stall_warnings (and bottom of page)
Idea ...
0
votes
0answers
20 views
What do C++ instances look like in the heap? [duplicate]
Possible Duplicate:
Structure of a C++ Object in Memory Vs a Struct
When an instance of a class is dynamically allocated on the heap, what does that structure look like? Is there a spec to ...
1
vote
1answer
362 views
Low-level communication on Android/other mobile platforms
Android has it's NDK to handle native code. I was just wondering how deep you can go with low level programming on this platform - whether you can for example control what the phone transmits through ...
0
votes
0answers
91 views
how to send system request keys in windows?
i found some articles about system request key in keyboard and its work in linux.i see here and here see that we can use alt+prtscr key to "send commands directly to the Linux kernel" and "computer’s ...
-1
votes
2answers
108 views
Does buffer[index] take the same amount of cycles as *buffer? [closed]
char buffer[424242] = {0};
Is buffer[index] as fast as *buffer?
for (int i = 0; i < SIZE; ++i) {
buffer[i] = 42;
}
char* end = buffer + SIZE;
for (char* pos = buffer; pos != end; ++pos) {
...

