Memory Full

Forum / Development

Orgams - The Users Speak!

first previous Page: 1 2 3 4

Hicks * 16 Jan 2022 15:00:17

Copying a block from one tab to the other will be a very convenient feature. The need to export/import is usable but a little bit heavy.
Any technical difficulties?

m_dr_m * 22 Jan 2022 19:05:49

Not a all!

Pas du tout du tout.

On my side: integrating new 'profile' and 'search' functions (gloire à Toms and Moudubou).

No time allocated to take care of that!

m_dr_m * 14 Apr 2022 22:04:36 * Modified at 22:08:35

Tip.

Orgams doesn't support (yet) the LIMIT directive.
Poor man's solution:

dev = 1
texture = &1c00

   org &100
   [...]  ; your questionable code

; End of source
  IF dev   ; When dev=0, source size won't be artificially changed.
   SKIP texture - $  ; Mimick "LIMIT texture"
  end



If $ is greater than 'texture', the argument is negative, hence assemblage error, which is what we want (to be warned about the overlap).
If $ is less than 'texture', no problemo.
If $ is equal to 'texture', the argument is 0, which is fine (last opcode emitted at texture-1). SKIP 0 doesn't do anything, as expected.

Hicks * 30 Apr 2022 23:03:28

About the incoming #10d TODO concerning SAVE directive: will it allow to save any area of the memory?

m_dr_m * 01 May 2022 00:08:29 * Modified at 00:19:52

Yes, since you can assemble at any area of the memory (modulo bug #e2).

Do you have a particular scenario in mind?
Note: the general rule is to present what to want to achieve (alongside with motivations is even better). It lays the ground for superior discussion and solutions.

"He who has a why to live for can bear almost any how." -- Freddy.

first previous Page: 1 2 3 4