Adrian Studer 3983af51c5 Few improvements to 8051 memory mapping (#9686)
* update memory map when idata/sfr/xdata regs change
* set address space name on map
* fix regression, remove debug output
* fix regression, enable map name
2018-03-14 13:07:22 +01:00
..
2018-02-20 23:19:35 +01:00
2018-03-10 14:15:29 +01:00
2017-09-01 01:10:32 +00:00
2017-08-19 20:05:21 +02:00
2017-09-12 22:31:54 +02:00
2018-02-03 19:22:56 +01:00
2018-03-03 22:08:37 +01:00
2018-01-24 10:47:33 +01:00
2018-01-10 10:18:31 +01:00
2017-07-20 14:50:13 +02:00

RIO design
==========

rio api allows to seamlessly access to underlying IO backends
and define rules on top of it to act as an mmu.

What do io.va means?
--------------------
- obey sections

- Plugins 

Actions
-------
 - open
 - read
 - seek
 - write
 - close

Layers
------
 - cache    caches write ops and modifies reads
 - map      allows to map a certain file at a given offset
 - sections like maps, but provide more information for virtual addressing

Features
--------
 - undo
 - buffer
 - desc

fn read(io: IO) {
	ut64 offset;
	if io.offset
}