Forum: Assembly May 7th, 2009 |
| Replies: 0 Views: 309 here is my Caesar cipher code, can u pls have a look at it and correct me if i'm wrong.
AREA text, CODE
SWI_Exit EQU &11
SWI_WriteC EQU &0
ENTRY |
Forum: Assembly May 5th, 2009 |
| Replies: 2 Views: 513 thankx for ur reply sir !
whatever i've got so far is in the code if u can pls have a look and correct me:
AREA text, CODE
SWI_WriteC EQU &0
ENTRY |
Forum: Assembly May 4th, 2009 |
| Replies: 2 Views: 513 this is my code which copies 1st string into 2nd String.
AREA StrCopy1, CODE
SWI_WriteC EQU &2
ENTRY ; mark the first instruction
main
ADR r1, srcstr ; pointer to first string ... |
Forum: Assembly May 2nd, 2009 |
| Replies: 2 Views: 404 This is my program listing it copies the 1st string into 2nd string.
CODE LISTING
************
AREA StrCopy1, CODE
SWI_WriteC EQU &2
ENTRY ; mark the first instruction |
Forum: Assembly May 1st, 2009 |
| Replies: 2 Views: 404 hi !
i'm very new to assembly and learning bit by bit but unfortunately i'm asked to write a program which encrypts a string using caesar cipher encryption method and then print that encrypted... |