Tagged Questions
Referring to computer architecture with addresses and other data units 16 bits wide.
35
votes
7answers
43k views
How to determine the variable type in Python
I want to see the type of a variable whether it is unsigned 32 bit,signed 16 bit etc.
How to view...
19
votes
2answers
1k views
Getting Embedded with D (the programming language)
I like a lot of what I've read about D.
Unified Documentation (That would
make my job a lot easier.)
Testing capability built in to the
language.
Debug code support in the language.
Forward ...
16
votes
7answers
1k views
What are 16, 32 and 64-bit architectures?
What do 16-bit, 32-bit and 64-bit architectures mean in case of Microprocessors and/or Operating Systems?
In case of Microprocessors, does it mean maximum size of General Purpose Registers or size of ...
13
votes
6answers
1k views
Converting Win16 C code to Win32
In general, what needs to be done to convert a 16 bit Windows program to Win32? I'm sure I'm not the only person to inherit a codebase and be stunned to find 16-bit code lurking in the corners.
The ...
10
votes
3answers
949 views
Java error on bilinear interpolation of 16 bit data
I'm having an issue using bilinear interpolation for 16 bit data. I have two images, origImage and displayImage. I want to use AffineTransformOp to filter origImage through an AffineTransform into ...
8
votes
6answers
548 views
How did 16-bit C compilers work?
C's memory model, with its use of pointer arithmetic and all, seems to model flat address space. 16-bit computers used segmented memory access. How did 16-bit C compilers deal with this issue and ...
7
votes
3answers
514 views
How to check if two System.Drawing.Color structures represent the same color in 16 bit color depth?
How can I check if two System.Drawing.Color structures represent the same color in 16 bit color depth (or generally based on the value of Screen.PrimaryScreen.BitsPerPixel)?
Let's say I set ...
5
votes
2answers
747 views
How can I save/load a 16 bit image in .net x64?
Before, when I was using win32, I used FreeImage in order to load and save bitmaps of bit depth greater than 8 bits. That's every image I work with, since I'm doing medical imaging, and before anyone ...
4
votes
1answer
118 views
manipulating 32 bit numbers with 16 bit registers in 8086
Im trying to write a program which get two 6-digit decimal numbers and show the addition of them, but in 16 bit 8086
i defined numbers as double word and put LO in WORD 1 and HO in word 2. similar ...
4
votes
3answers
145 views
16 bit asm instruction set
What set of instructions is used in COM files? I assumed it was 8086, but it seems that I was wrong. In a 8086 manual I found, shl can only accept 1 or cl for its second argument, while immediate ...
4
votes
1answer
238 views
Python and 16-bit PGM
I have 16-bit PGM images that I am trying to read in Python. It seems (?) like PIL does not support this format?
import Image
im = Image.open('test.pgm')
im.show()
Shows roughly the image, but it ...
4
votes
3answers
1k views
Python: Manipulating a 16-bit .tiff image in PIL &/or pygame: convert to 8-bit somehow?
Hello all,
I am working on a program which determines the average colony size of yeast from a photograph, and it is working fine with the .bmp images I tested it on. The program uses pygame, and ...
4
votes
1answer
159 views
Building 16 bit os - character array not working
I am building a 16 bit operating system. But character array does not seem to work.
Here is my example kernel code:
asm(".code16gcc\n");
void putchar(char);
int main()
{
char *str = "hello";
...
3
votes
4answers
123 views
sine function on 16-bit microcontroller
I need to generate a sine wave to fill a char table of size 1024. The word size on the microcontroller is 16-bit and floating-point operations are not available.
The sine wave itself will oscillate ...
3
votes
5answers
264 views
Numpy and 16-bit PGM
What is an efficient and clear way to read 16-bit PGM images in Python with numpy?
I cannot use PIL to load 16-bit PGM images due to a PIL bug. I can read in the header with the following code:
dt = ...
3
votes
1answer
98 views
Arbitrary Precision Arithmetic (Bignum) for 16-bit processor
I'm developing an application for a 16-bit embedded device (80251 microcontroller), and I need arbitrary precision arithmetic. Does anyone know of a library that works for the 8051 or 80251?
GMP ...
3
votes
3answers
488 views
16 bit Int vs 32 bit Int vs 64 bit Int
I've been wondering this for a long time since I've never had "formal" education on computer science (I'm in highschool), so please excuse my ignorance on the subject.
On a platform that supports the ...
3
votes
1answer
155 views
Is there a collision rate difference between one 32-bit hash vs two 16 bit hashes?
I am working on a system where hash collisions would be a problem. Essentially there is a system that references items in a hash-table+tree structure. However the system in question first compiles ...
3
votes
1answer
740 views
C# bitwise shift on ushort (UInt16)
I need to perform a bitwise left shift on a 16-bit integer (ushort / UInt16), but the bitwise operators in C# seem to apply to int (32-bit) only. How can I use << on an ushort, or at least get ...
3
votes
6answers
567 views
Light-weight database engine for Delphi 1?
I'm looking for a light-weight database engine for Delphi 1 (don't ask, it's a long story). Delphi 1 is 16-bit. The engine should compile into the EXE. SQL would be nice, but not mandatory. Any info ...
3
votes
8answers
544 views
Make 16-bit code work in WinXP or Vista (or alternately how to find Win98 retail licenses?)
We have thousands of DOS programs that were all written in the 80s using 16-bit C, comprising over 1,000,000 lines of code. Many of these programs utilize libraries that directly access the screen, ...
2
votes
3answers
65 views
Strange behavior from interrupt service routine
I'm writing an interrupt service routine which is supposed to process interrupts caused by RTC using int 70h and IRQ8 for use with some timer. Unfortunately, I've been having lots of problems with ...
2
votes
1answer
59 views
Screen output in a simple OS
I'm starting to write a very simple OS right now, just the boot sector, to get used to basic assembly. What is the best way to output text? I've tried :
int 0x10 ah = 0x0E
int 0x21 ah = 0x09
Int ...
2
votes
5answers
151 views
Increasing performance of 32bit math on 16bit processor
I am working on some firmware for an embedded device that uses a 16 bit PIC operating at 40 MIPS and programming in C. The system will control the position of two stepper motors and maintain the step ...
2
votes
1answer
132 views
Counting Set Bits. 16-bit assembly parity program
I am trying to write a subprocedure that will count the number of buts set in a 16bit number, then send that number (bits set) back to the main procedure in AX. The main should display display the ...
2
votes
2answers
1k views
C# - Converting 8-bit or 16-bit grayscale raw pixel data
I need to be able to convert 8-bit or 16-bit grayscale pixel data into a file format that the .NET framework can support.
The data I have available is the width, height, orientation (bottom-left) and ...
2
votes
1answer
269 views
16 bit C code for real mode kernel
I don't know how to compile my C kernel for 16 bit real mode. I have tried a variety of compilers with no luck. My bootloader simply loads raw sectors from the floppy (my kernel lives right after the ...
2
votes
4answers
554 views
How to use high and low bytes?
I am trying to represent 32768 using 2 bytes. For the high byte, do I use the same values as the low byte and it will interpret them differently or do I put the actual values? So would I put something ...
2
votes
2answers
144 views
Timed task list
I am looking for help on embedded application on 16bit device.
I need to run several simple "tasks/functions" via function pointers. Those tasks run in predeterimned intervals.
typedef struct
{
...
2
votes
2answers
135 views
Change Directory with Windows 16bits API
I write in MASM 6.0 (Assembly API Windows 16 bits)
I want to change dir in my code.
I'm using DOS3Call function (faster than int 21h)
mov dx,OFFSET dir_user
mov ah,3bh
invoke DOS3Call
;dir_user is ...
2
votes
1answer
421 views
Hardware interrupt list
Is there any list of the hardware interrupts? i was coding a 16-bit app and i wanted to check some INTs but, i couldnt find anything usefull in google, can any1 provide me some docs about it? if ...
2
votes
2answers
485 views
MOV BX,[SI] - ASM question
I'm studying ASM 8086 theoretically on highschool.
And when I do this:
MOV BX,[SI]
is SI+1 going to BH or BL?
Thank you :-)
2
votes
2answers
598 views
80x86 16-bit asm: lea cx, [cx*8+cx] causes error on NASM (compiling .com file)
Title says it all.
The error NASM gives (dispite my working OS) is "invalid effective address".
Now i've seen many examples of how to use LEA and i think i gots it right but yet my NASM dislikes it. ...
2
votes
4answers
3k views
What does OFFSET in 16 bit assembly code mean?
I am going through some example assembly code for 16bit real mode.
I've come across the lines:
mov bx, cs
mov ds, bx
mov si, OFFSET value1
pop es
mov di, OFFSET value2
...
2
votes
2answers
572 views
Alter Interrupt in 16 bit Real Mode
I'm trying to alter my interrupt table to take over the keyboard interrupt. My end goal is to write my new interrupt routine, copy myself into RAM and make the real-mode interrupt table point to me.
...
2
votes
5answers
552 views
How to convert OWL/BP7 application to Delphi?
Which tool/approach would you suggest to convert of a large 16bit Windows GUI application, written in old Borland Pascal 7 / OWL, to Delphi?
Understanding the pretty heavy differences between OWL ...
2
votes
3answers
1k views
OpenGl 16 bit display via Tao/C#
I have some scientific image data that's coming out of a detector device in a 16 bit range which then gets rendered in an image. In order to display this data, I'm using OpenGL, because it should ...
1
vote
0answers
18 views
Best approach for debugging a Win 16-bit application?
I must reverse a legacy windows (16-bit, NE exec) application that controls an old DAQ that I must interface somehow with upgraded hardware. I've been able to disassemble the exec using W32Dasm (and ...
1
vote
1answer
38 views
Source Index in assembly [closed]
Possible Duplicate:
What do the brackets mean in x86 asm?
I've been confused about this for a while. What is the difference between "si" and "[si]"? (This is using 16-bit NASM syntax)
1
vote
2answers
61 views
c++ using 16bit pointers on 32/64 bit systems
Typically the size of a pointer is equal the "width" of the CPU, so that a pointer can typically access every system address.
Using a 16 bit pointer on a 64 bit system should allow to fit 4 16bit ...
1
vote
1answer
99 views
Using 16-Bit textures
WP7 textures are supported in the Reach-Profile that WP7 devices falls into.
But XNA converts all my ressources upon adding them to a project to RGBA8, that's insane,
the displays of WP7 devices are ...
1
vote
3answers
396 views
Python and 16 Bit Tiff
How can I convert and save a 16 bit single-channel TIF in Python?
I can load a 16 and 32 bit image without an issue, and see that the 32 bit image is mode F and the 16 bit image is mode I;16S:
...
1
vote
2answers
132 views
what is the ultimate difference between a 16-bit and 32-bit application?
32-bit x86 is a superset of 16-bit x86. Suppose I write a code in 16-bit x86. It should ideally work on system with 32-bit x86 without any hitch. But that is not the case. Compatibility is an issue ...
1
vote
0answers
152 views
Multiple 16-bit programs running in Windows 7
Good day,
I've created a python program to batch up a process we have running at work. Unfortunately, the program we use was written in the 80's, with its last update in the 90s. Its a 16 bit ...
1
vote
2answers
194 views
Where to find the reference of dos.h for the c programming language?
I'm looking for the reference/documentation of the dos.h API.
(especially for an openwatcom specific version).
Where to get the documentation?
1
vote
2answers
175 views
what is meant by 32-bit application?
I am not sure what is meant by 16-bit or 32-bit applications. Is that a 16-bit application is an application which would not require more than 2^16 bytes of memory space? Does this 16-bit refers to ...
1
vote
3answers
2k views
Run 16-bit command line application on Windows 7 64-bit
I have 16-bit command line tools that I want to run on Windows 7 x64
I don't want to use a Virtual Machine
Can the 16-bit tools be wrapped in some way?
Maybe a 16-bit CMD.exe emulator
1
vote
1answer
273 views
16-bit linking under linux
I'm using NASM Assembler under linux
when I use the command "nasm -f elf -l hello.lst hello.asm"
it works fine
but when linking with gcc "gcc -o hello hello.o"
it generates an error :
...
1
vote
3answers
208 views
XMS allocation in 16-bit DOS
Please forgive my attempts at necromancy, but I actually need to write some code for 16-bit DOS (!). I have to verify that a piece of software executes correctly when built for a 16-bit platform, and ...
1
vote
5answers
1k views
Print integer to console in x86 assembly
When I add two values in 16 bit assembly, what is the best way to print the result to console?
At the moment I have this code:
;;---CODE START---;;
mov ax, 1 ;put 1 into ax
add ax, 2 ; add 2 to ...