Initializing the Code
Press <Ctrl+F2> to initialize the code space. The memory pointers (ROM, RAM) are reset to the start addresses, and the code addresses of all words are cleared. -- Next
- In the example target system ROM is at $C000 to $FFFF and RAM starts at $4000.
- The memory ranges are defined at the start of the program source.
- Initialization of the code space is only required at the start of a project. From then on you work on the existing code image, add new words and/or change existing words in the code.