Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
7answers
314 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 ...
5
votes
3answers
664 views

Overflow and Carry flags

Is it possible to add two signed 8-bit numbers together and set both the carry and overflow bits?
5
votes
4answers
1k views

8 bit audio samples to 16 bit

This is my "weekend" hobby problem. I have some well-loved single-cycle waveforms from the ROMs of a classic synthesizer. These are 8-bit samples (256 possible values). Because they are only 8 ...
4
votes
1answer
99 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. ...
3
votes
7answers
173 views

How can I plan my software to avoid excessive rewriting and interdependencies

I'm writing a motor controller that has a couple of interfaces (buttons, Bluetooth, haptic knobs) which is a task that is steadily growing to be a larger than I figured. I've tried to just go at it ...
2
votes
3answers
78 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 ...
2
votes
3answers
163 views

4x8 bit int to 32 bit integer

I have _int8 arr[0] = 0; _int8 arr[1] = 0; _int8 arr[2] = 14; _int8 arr[3] = 16; I need to convert it to one _int32 using as arr[0] as first part <..> and arr[3] as last. In the end it should be ...
2
votes
5answers
318 views

Are there any current non-Harvard architecture microcontrollers?

I have used and like the Atmel ATMEGA and ATTINY series microcontrollers, and think them quite good. One thing I am not terribly fond of though is the fact that they (and Microchip PIC uC family also) ...
1
vote
2answers
26 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 ...
1
vote
2answers
230 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 ...
1
vote
2answers
99 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?
1
vote
2answers
148 views

Address 0 being overwritten by NULL pointer on HCS08

On my 8-bit Freescale HCS08 micro, whenever I call a library function that returns values to pointers I pass it, and I don't really want them, I threw in a NULL, e.g. UART_SendBlock((char *)txstr, ...
1
vote
1answer
82 views

What happens when you send an 8bit number to an output which is 4bit? C Language

I'm studying in high school, and we have an electronics project. We have an output from our computer which is 4 bit, output address is 37Ah and my teacher did this: outportb(0x37A,0x80); so what ...
1
vote
4answers
739 views

audio to 8-bit text sample conversion

I have an interesting question today. I need to convert some pokemon audio files to a list of 8-bit samples (0-255 values). I am writing an assembly routine on the MC6800 chipset that will require ...
0
votes
1answer
87 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 ...
0
votes
0answers
27 views

Accessing 8 bit image colour palette information in Android

In Android, is there any way to access/modify the colour palette data in an 8 bit image?
0
votes
2answers
83 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
40 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 ...
0
votes
2answers
482 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 ...
0
votes
2answers
155 views

win32api: get bitmap palette

I'm basically doing this but for 8-bit. I can get the bitmap bits correctly using "P" as the mode bit. However, I have all these bitmap bits, but no palette - PIL just uses a default gray-scale ...
0
votes
2answers
50 views

How to get the Ansinerator library to work?

I'm trying to get the Ansinerator library to work my on my localhost, but something's amiss. I'm receiving the following errors: Notice: Undefined index: hash in ansi.php on line 23 Notice: ...
0
votes
3answers
228 views

Is a fullscreen 8 bit framebuffer possible in X11, and if so, what am I doing wrong?

I'm trying to get a fullscreen 8 bit depth framebuffer but I can't find any visual to work with. I want 8 bit truecolor, where 3 bits are red, 3 bits are green and 2 bits are blue. I'm using XF86 to ...