|
![]() |
Overclock.net - Overclocking.net > Software, Programming and Coding > Coding and Programming | |
Solved: 8088 Assembly Coding
|
||
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) | ||||||||||||
|
110100001101001111000
|
I'm trying to write code for the Intel 8088 processor. I'm just wondering if anyone knows how to initialize a vector across several memory locations. ie
A = (1, 3, 5) Memory 0x00 -> 1 0x01 -> 3 0x02 -> 5 The application will be dot product for signal processing. I just can't think of a way to access indvidual values, other than to store each one as it's own byte and access them by incrementing registers. I'm looking for something like the DCD command for ARM processors, where it takes a vector and stores each element to a byte in memory. Solution: I did some messing around, and a vector/array can be stored as follows. To store vectorName = (1,2,3,4), you can use: vectorName: .BYTE 1,2,3,4
__________________
Last edited by C-bro : 02-04-07 at 05:28 PM. |
||||||||||||
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
|
|