Very clear, very useful. The manuals are so cryptic… thank you
@ecemohammedamin7 ай бұрын
Glad it was helpful!
@odeshvili422410 ай бұрын
What's the password you put after ubnt please?
@ecemohammedamin9 ай бұрын
same password: ( ubnt )
@odeshvili42249 ай бұрын
Where does the powerbeam get internet if there is no wireless internet near me?
@ecemohammedamin9 ай бұрын
Through ethernet port, from ISP router
@yash115210 ай бұрын
thanks a lot for such thorough video
@ecemohammedamin9 ай бұрын
Glad it was helpful!
@ahmedaliraqi9736 Жыл бұрын
Dhcp fallback ip why its not different how can i enter sender ?
@ahmedaliraqi9736 Жыл бұрын
Why it's not different ip
@m1m1nk0 Жыл бұрын
Tenda ac1200 V12 ?
@ecemohammedamin9 ай бұрын
Yes
@BenzAlobeidy Жыл бұрын
عاش
@chefskiss651 Жыл бұрын
Why use a 5V Vcc instead of a normal 5V voltage source?
@almost__there4146 Жыл бұрын
ما شاء الله عليك اخوي الله ينفع بعلمك
@baghdadiabdellatif1581 Жыл бұрын
Great work 👌 thank you
@ecemohammedamin Жыл бұрын
Welcome 😊
@elijahmikealson23502 жыл бұрын
How to install debug
@ecemohammedamin2 жыл бұрын
kzbin.info/www/bejne/oqmTZKppqN6tbbs
@abdullahmuhi2 жыл бұрын
Thank You 💐
@blackfire97502 жыл бұрын
is there a way to change the language to arabic? i use a software in dosbox called Wordstar4 its a word processor to take notes but its in english.
@TrophyRanger2 жыл бұрын
If you wanted a wireless network on the receiver side, can you hook up a wireless router directly to the POE adapter on the receiver side or would the router need to be hooked up to the switch?
@ecemohammedamin2 жыл бұрын
Sorry for late response, yes you can connect wireless router directly to the POE, you have to configure router WAN port internet setup to dynamic ip
@hsw19762 жыл бұрын
懷念 pctools、debug.exe、code view and Soft ICE
@idristamur67692 жыл бұрын
👌🏻👌🏻👍🏻👍🏻👍🏻
@dindarharki12022 жыл бұрын
👏👏👍👍👍👍
@naturerelaxingmind2 жыл бұрын
Well done sir 👏 the only project that was different from others
@huaweimate97462 жыл бұрын
Useful tutorial
@idristamur67692 жыл бұрын
You are doing a great...
@abdullahmuhi2 жыл бұрын
thank you 🙏
@RUDAW122 жыл бұрын
We appreciate it, thank you for your efforts.
@dindarharki12022 жыл бұрын
❤❤👏👏
@minaageed46142 жыл бұрын
Well done 👏🏼💗
@aimensayoud85632 жыл бұрын
you are moving too fast for beginners in the assembly, do you have any videos explaining what you were doing in the commands
@ecemohammedamin2 жыл бұрын
Dear Aimen, I will be happy to help you, you can contact me at: [email protected]
@championszone81482 жыл бұрын
That was really Helpfull thanks teacher
@deedewald17072 жыл бұрын
Good work. I am understanding of XLATB instruction !
@maxmuster70032 жыл бұрын
Good work.
@minaageed46142 жыл бұрын
👏🏼👏🏼👏🏼
@maxmuster70032 жыл бұрын
With using the TINY memory model for DOS the file size is limited to 64 kb. But in DOS we can get more free RAM and we can open, read and close a (larger) file with software interrupts from a tiny program. And we can start and run DOS com and exe files from a tiny program as a child process. After termination the child process we are going back to the start processt so we can start the next child process with the next com or exe file.
@minaageed46142 жыл бұрын
👏🏼👏🏼👏🏼
@deedewald17072 жыл бұрын
Excellent content here and a good teacher !
@marilynroberts51872 жыл бұрын
Oh My God💛!! Boost your stats - P R O M O S M!!!
@razanad33332 жыл бұрын
we are witting for next videos can u share
@ecemohammedamin2 жыл бұрын
I will do my best, this semester I have MicroProcessors Lab., Just wait for it.
@maxmuster70032 жыл бұрын
Waiting for the next Debug video.
@ecemohammedamin2 жыл бұрын
I'm working on it, whenever finished I will share 🙂, thanks for your comment
@maxmuster70032 жыл бұрын
@@ecemohammedamin I made a *Picture to character converter* free to use based on Debug and i published it on Sourceforce. Sorry i can not post the internet link, else my comment will be delete in a few second from youtube.
My last batch file need to start with some parameter attached. Example: CENTER.BAT 8 1b "Welcome to Mohammed ECE youtube channel and have fun!" @echo off REM *CENTER.BAT* REM Need three parameter (%1 %2 %3) attached. REM Usage: CENTER.BAT row color "TEXT" echo acs:100>tmp.deb echo mov ax,B800>>tmp.deb echo mov es,ax>>tmp.deb echo mov di,%1>>tmp.deb echo mov bx,%1>>tmp.deb echo shl di,7>>tmp.deb echo shl bx,5>>tmp.deb echo add di,bx>>tmp.deb echo cld>>tmp.deb echo mov si,140>>tmp.deb echo lodsb>>tmp.deb echo cmp al,FF>>tmp.deb echo jnz 0117>>tmp.deb echo sub si,141>>tmp.deb echo mov bx,50>>tmp.deb echo mov cx,si>>tmp.deb echo sub bx,si>>tmp.deb echo shr bx,1>>tmp.deb echo shl bx,1>>tmp.deb echo add di,bx>>tmp.deb echo mov ah,%2>>tmp.deb echo mov si,140>>tmp.deb echo lodsb>>tmp.deb echo stosw>>tmp.deb echo dec cx>>tmp.deb echo jnz 0132>>tmp.deb echo ret>>tmp.deb echo org 140>>tmp.deb echo DB "%3", FF>>tmp.deb echo.>>tmp.deb echo n CENTER.COM>>tmp.deb echo rcx>>tmp.deb echo 90>>tmp.deb echo wcs:100>>tmp.deb echo q>>tmp.deb debug<tmp.deb>nul del tmp.deb CENTER.COM del CENTER.COM ..... The batch file contains some pipe operators (> >> <) for to redirect the output of the echo commands into a new text file and to start Debug with the file. And the output contains some internal Debug commands and a routine made with assembler mnemonics to create and run a tiny executable com file.
@dindarharki12023 жыл бұрын
دەست خۆش سەیدا
@Science4kurdstan3 жыл бұрын
Gd job bro and Well done <3 <3 <3
@InssiAjaton3 жыл бұрын
A little bit of history that may be less known by now: The Debug was IBM's contribution to the DOS. Most everything else was done by Microsoft (based on what Microsoft bought from Tim Patterson, that is).
@maxmuster70033 жыл бұрын
If we need to specify how many bytes we want to access in memory: Little endian memory model(low byte, high byte) for 16 bit values. mov BYTE PTR[di],1 mov WORD PTR[di],1 If we use a register for operand the assembler allready knows the register size, so we do not need to specify. mov [di],al mov [di],ax
@deedewald17072 жыл бұрын
Your examples clear my doubts and solid this brain !