We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3746afd commit b75802cCopy full SHA for b75802c
1 file changed
src/marie.ts
@@ -526,6 +526,9 @@ export class MarieSim {
526
this.addLog(action);
527
}
528
529
+ if (typeof window !== 'undefined' && action && ['memwrite', 'memset'].includes(action.type)){
530
+ window.dataBytes = calculateDataBytesOccupied(window.staticDataAddresses);
531
+ }
532
// Sumar al contador global
533
if (typeof window !== 'undefined' && isRealMicroStep(action)) {
534
window.microStepCount = (window.microStepCount || 0) + 1;
0 commit comments