This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const deepReplace = (objectToBeReplaced, replaceMap) => { | |
| if (!objectToBeReplaced) { | |
| return; | |
| } | |
| if (!replaceMap || replaceMap.size < 1) { | |
| return objectToBeReplaced; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;Tuna Yağcı | |
| org 100h | |
| ;write char from al | |
| writeChar MACRO | |
| mov ah, 2 | |
| mov dl, al | |
| int 21h | |
| ENDM | |
| ;------------------ |