pull/2/head
ondra05 2023-08-09 03:01:42 +02:00
parent 16bd64fee6
commit f17b89c490
No known key found for this signature in database
GPG Key ID: 0DA6D2BB2285E881
1 changed files with 2 additions and 1 deletions

View File

@ -262,8 +262,9 @@
# Memory
- Addresses are 64 bit
- Program should be in the same address space as all other data
- Address `0x0` is invalid and acessing it traps
- Memory implementation is arbitrary
- Address `0x0` may or may not be valid. Count with compilers
considering it invalid!
- In case of accessing invalid address:
- Program shall trap (LoadAccessEx, StoreAccessEx) with parameter of accessed address
- Value of register when trapped is undefined