Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tamaraatanasova/8085-zadaca4
Simple 8085 program
https://github.com/tamaraatanasova/8085-zadaca4
8085 asembler
Last synced: 2 days ago
JSON representation
Simple 8085 program
- Host: GitHub
- URL: https://github.com/tamaraatanasova/8085-zadaca4
- Owner: tamaraatanasova
- Created: 2024-06-01T17:54:46.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-01T17:59:03.000Z (6 months ago)
- Last Synced: 2024-06-01T20:19:45.656Z (6 months ago)
- Topics: 8085, asembler
- Language: Assembly
- Homepage:
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 8085-Zadaca4
Write an equivalent assembly program to the corresponding C program:
void main()
{
const int = 30;
int x[50], y[50], z[50];
for (int i=1; i<=N; i++)
{
z[i]=10;
x[i]=4*y[i];
}
}![Screenshot (1)](https://github.com/tamaraatanasova/8085-Zadaca4/blob/main/image.png)