In computer architecture, 8-bit integers, memory addresses, or other data units are those that are at most 8 bits (1 octet) wide. Also, 8-bit CPU and ALU architectures are those that are based on registers, address buses, or data buses of that size. 8-bit is also a term given to a generation of ...
0
votes
3answers
81 views
What is the fastest way to generate pseudo random number by 8-bit MCU?
Linear congruential generator is a good algorithm. But is there any faster algorithm?
2
votes
1answer
43 views
Convert an array of 8-bit values to wav file in PHP
I have an array of 8-bit values which I have received from a microprocessor.
I am looking to turn those values into a wav file using PHP.
I found some examples, like this or this, that work in Java ...
2
votes
1answer
115 views
Assembly , Move an 8 bit register to a 16 bit Register , how?
what i want to know is obviously said on the topic.
i have problem moving 8 bit register to a 16 bit register .
what i'm trying to do is to , divide a number permanently by 10 til it gets lower than ...
0
votes
0answers
36 views
Hamming distance value for j1850 crc
I have to implement j1850 8 bit crc on a message length on 56 excluding crc part. Can anybody tell me the hamming distance for this if my polynomial is x^8 + x^4+x^3+x^2+1.
2
votes
2answers
169 views
8-bit FFT for CPU architectures?
I am looking for an FFT engine that can handle 8-bit real to complex transforms (of size 65K). The need for this is to accelerate a real-time signal processing engine. It is currently limited by ...
0
votes
0answers
47 views
Pythons 2.7.x docs about Unicode and why this still works?
According to the Python 2.7.x documentation:
The unicode() constructor has the signature unicode(string[, encoding, errors]). All of its arguments should be 8-bit strings. The first argument is ...
0
votes
3answers
79 views
Most efficient way to convert two bytes into a 16bit value?
Say first byte = 2 (dec) and second byte = 1 (dec).
First byte therefore represents 257 (dec).
Second byte therefore represents 1 (dec).
So the (total) 16bit value is 258 (dec).
So if I do:
...
1
vote
0answers
68 views
Compiling C to an 8-bit machine [closed]
I have some code that I compile with gcc and run it in my console while on a 64 bit Intel i5. I then build a .hex file in AtmelStudio and load my code to an 8-bit ATMega328 with avrdude. What sorts of ...
-1
votes
3answers
387 views
Difference between C 8 bit 16-bit 32-bit compilers [closed]
This question may be redundant, but I didn't found exact answer.
What is the Difference between C 8 bit 16-bit 32-bit compilers.
how the .exe differ generated by different compilers for same ...
0
votes
0answers
81 views
how to change Reviewboard e-mail content-transfer-encoding '8bit' to 'quoted-printable'?
Reviewboard is a great tool for peer-review. After upgrading to its latest v1.7.6, email messages arrive with Content-Transfer-Encoding as '8bit' like below, then multi-byte chars are broken.
...
0
votes
0answers
51 views
NAudio reading 8bit wav
I have no problem reading 16bit wav files - each sample is saved as 2 bytes:
short sample = BitConverter.ToInt16(waveData, n); //reads 2 bytes and converts it to short which represents one sample
...
0
votes
0answers
51 views
How to convert a 8bits color FF FF FF FF to a 32bits color in a shader
I want to convert, in a pixel shader, a 8bits color (3bits for red, 3bits for green, 2bits for blue so RRRGGGBB) to a standard 32bits (r:FF g:FF b:FF a:FF).
8bits encode shader can be changed if ...
1
vote
2answers
55 views
Do integers, whose size is not a power of two, make sense?
This is an 8 bit architecture, with a word size of 16 bits. I now need to use a 48-bit integer variable. My understanding is that libm implements 8, 16, 32, 64 bit operations (addition, ...
1
vote
3answers
295 views
How to split a 16 bit value into two 8 bit values in vb.net?
i have a 16 bit value like this:
0000000000000011
i want to split this in two 8 bit values like :
00000000 and 00000011
the 16 bit value is a variable byte_val1
which is a unsigned 16 ...
3
votes
1answer
107 views
creating a custom getColor(byte r, byte g, byte b) method
i have a simple byte array that i want to take colours from. My plan was to have three bits from red, three bits for green, and two bits for blue. 8-bit.
I think the colours are right:
Please ...
1
vote
2answers
134 views
Efficiency in array packing: 8bit (byte) vs 16bit elements?
i'm currently programming in c for an 8-bit microcontroller from atmel (Atmega328). In the program, i've got an 8-bit array storing thousands of 2 bit integers and it is therefore located in the ...
0
votes
0answers
58 views
on2 vp6 sdk(C++) i want 8bit color
After capture the 24bit bitmap created a program using the vp6 codec flv to transfer
Standard 35kbps bandwidth, 1024 * 768 will occur
Want to reduce the bandwidth, the more
So 8bit bitmap captures and ...
1
vote
0answers
1k views
Measuring Intensity Using ImageJ
we have to measure the intensity of the fluorescence in certain regions of images using imagej. we came up with the below steps to measure the intensity. while it does seem correct, my question is --> ...
0
votes
1answer
91 views
What is this variable-length integer encoding?
I am documenting an old file format and have stumped myself with the following issue.
It seems to be that integers are variable-length encoded, with numbers <= 0x7F encoded in a single byte, but ...
0
votes
2answers
895 views
Options to Convert 16 bit Image
when i open a 16 bit image in tiff format, it opens up as a black image. The 16-bit tiff image only opens in the program ImageJ; however, it does not open in Preview. I am wondering what my options ...
1
vote
3answers
229 views
How do 8 bit and 16 processors access more ram with two registers?
Something that has always confused me is how 8 bit computers access more than 256 bytes of RAM. I know that it must use two registers, but can any one show me an example of what this would look like ...
0
votes
0answers
239 views
8 bit adder design? Link two 4bit adders?
Ive created a 4bit adder design but I need an 8bit. Could I create two 4bit and link the outputs together through an AND gate?
My 4 bit adder:
...
0
votes
1answer
215 views
OpenGL - Animate/cycle/rotate palette
I was trying to create a OpenGL version of an old plasma 8bit effect animation in DOS but I am stuck. Since almost every OpenGL program has included something to generate a palette for Win32 I thought ...
1
vote
1answer
107 views
Are there modern compilers for high level languages on simple processors which produce self-modifying code?
Back in the days before caches and branch prediction, it was relatively common if not encouraged to make self-modifying code for certain kinds of optimizations. It was probably most common in games ...
0
votes
0answers
80 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 ...
1
vote
2answers
403 views
fast 8x8bit multiplication assembly pic18
Im trying to multiply two 8 bit numbers and store them in a 16 bit location for results larger than 255. The fastest way to accomplish this is through shifting, which I have tried to implement via the ...
0
votes
0answers
83 views
WP7 displays 8 bit color depth png? [closed]
I have few 8 bit PNG images need to be displayed in my WP7 app. But it seems that WP7 doesn't accept them (They are unable to display in my app).
Anyone has a suggestion?
Thanks
0
votes
1answer
148 views
RBG 24bit to RGB 8bit bit shifting
How do you store 3 numbers in a single byte using bit shifting in java, ie use the first 3 bits for R, the next 3 bits for G, and the last 2 bits B. I think I know how to retrieve the numbers from the ...
1
vote
2answers
91 views
Portable encoding of 32 bit integers to communicate with an 8 bit device
I need to communicate with an 8 bit device on which there is no nthol function. It is also impossible to use protocol buffers library.
Will following C function produce the same output string no ...
0
votes
0answers
421 views
Converting 8 bit color into RGB value
I'm implementing global illumination in my game engine with "reflective shadow maps". RSM has i.a. color texture. To save memory. I'm packing 24 bit value into 8 bit value. Ok. I know how to pack it. ...
0
votes
3answers
139 views
Does R support 8bit variables?
I am trying to read a large (~700Mb) .csv file into R.
The file contains an array of integers less than 256, with a header row and 2 header columns.
I use:
trainSet <- read.csv(trainFileName)
...
1
vote
2answers
102 views
cv::Mat of large integers
I am struggling with putting large integers, such as 2942584, in a cv Mat. The only type accepting it was CV_8UC1, but it changes the value from 2942584 to 120 (well in 8 bits obviously).
But is ...
0
votes
1answer
264 views
RoR ASCII-8bit to UTF-8 with non-latin (cyrillic) symbols in Net::HTTP.get_response.body
I need to get some data via Net::HTTP, it works good by i recieve response in ASCII-8bit. The problem is how to encode this to utf8 and save all non-latin symbols?
With @content.encode('utf-8', ...
1
vote
1answer
124 views
Java - Parser Library to parse a decimal to byte in x-bits
I have a problem with parsers.
The problem is I get an integer such as "8" and I need to transform this to an 8-bit unsigned byte.
Later on I will receive an integer "56" and need to transform it ...
0
votes
2answers
141 views
Sign-extending on serial communication with termios and uint8_t
I'm trying to write bytes using the write() Unix system call, but any 8-bit value I send that starts with 1 is turned into a 32-bit value. I've tried looking to see if there are any termios flags to ...
0
votes
0answers
155 views
8-bit background and characters for android?
Ive got 2 questions:
Is there a prefered software when drawing 8-bit background and characters for games? Ive tried photoshop but I just cant figure out a good way to do it in PS. easiest so far has ...
2
votes
3answers
1k views
How to convert a BufferedImage to 8 bit?
I was looking at the ImageConverter class, trying to figure out how to convert a BufferedImage to 8-bit color, but I have no idea how I would do this. I was also searching around the internet and I ...
0
votes
1answer
391 views
how to display a 8bit 256x256 array in c/matlab?
i have an array in c:
unsigned char image_in[256*256] = {
72, 57, 55, 67, 79, 58, 52, 72, 96, 81, 72, 76, 93, 107, 91, 84, 95, 66,....IT GOES ON AND ON 256x256.....}
each value ...
1
vote
1answer
467 views
IMAP search command with UTF-8 charset in C#
C# Imap search command with special characters like á,é
I am trying to implement the logic mentioned in the above post in C# to achieve non-ascii based searches in gmail. After logging in ...
0
votes
1answer
130 views
Reading a smart card (8 bit or 16 bit?)
I'm working on a driver for reading smart cards (PC/SC), and I've been reading the data in a forced 8-bit manner, even if the card itself might have a 16-bit chip. I have two questions, one is: how ...
2
votes
2answers
113 views
Can anyone tell me the name of the old 8 bit processor used most for emulator beginners?
I remember a few years ago writing an emulator for an 8 bit processor, which IIRC, never really existed. It was thought up by someone in order to write a emulator, and was referenced a lot for ...
2
votes
3answers
336 views
What is an 8-bit register on a desktop cpu?
Reading through the following instruction table manual I see that integer multiplication is often much faster for 8-bit registers.
In the context of a normal desktop cpu, what does 8-bit register ...
1
vote
1answer
989 views
how to conert 24 bit RGB to 8 bit RGB
I was wondering what is the best way to convert a 24-bit RGB color (8 bits per color) into an 8-bit color (2bits Blue, 3 Green, 3 Red).
Thank you.
EDIT:
Sorry I forgot to mention that I'd like a C ...
1
vote
2answers
1k views
Perl Decimal to Binary 32-bit then 8-bit
I've got a number (3232251030) that needs to be translated from Decimal to Binary.
Once I've gotten the binary, I need to separate 8-bits of it into digits, revealing an ip address.
Converting ...
0
votes
2answers
205 views
Why is an AES encrypted string saving as blank to MySQL table with Ruby?
I have a model called Encryption which generates an AES encrypted string and saves that to a database table called encryptions. My encryption table schema is as follows:
id : bigint unsigned
user_id ...
0
votes
1answer
112 views
Why is the bpp information at 0x1C in this .bmp image wrong?
Address 1D indicates the image is eight bits per pixel, but it isn't, each pixel is represented by 3 bytes (24 bits).
At first, I thought photoshop did this in error, but I found that this format ...
4
votes
1answer
173 views
Opening a file in text mode can lead to data loss in Python: why?
The documentation for codecs.open() mentions that
Files are always opened in binary mode, even if no binary mode was specified. This is done to avoid data loss due to encodings using 8-bit values.
...
1
vote
2answers
161 views
Any PHP lib to generate 8bit art image?
eightbit.me is cool. Want to make 8bit image on the webpage, can I do it with PHP?
5
votes
7answers
936 views
how to avoid memory wastage when storing UTF-8 characters (8 bit) in Java character (16 bit). two in one?
I'm afraid I have a question on a detail of a rather oversaturated topic, I searched aroudn a lot, but couldn't find a clear answer to that specific obvious -imho- important, problem:
When ...
0
votes
1answer
992 views
Convert 8bit MIME message to quoted-printable
What is the easiest way to convert a MIME e-mail containing raw 8bit parts to a RFC822 compliant message containing only 7bit parts ?
The parts have to be automatically converted to ...


