Showing posts with label VSCode. Show all posts
Showing posts with label VSCode. Show all posts

Sunday, January 03, 2021

Visual Studio Code is tearing on VMware Workstation

 VSCode (1.52.1) on VMware Workstation 14 is tearing its windows. Below shows the right side of VSCode is tearing and it can be really bad - all the text are not readable.

As a workaround do:

$: code . --disable-gpu

 

 Reference:

https://github.com/microsoft/vscode/issues/15211

Hello world assembly on x86 Linux

Hello world assembly on x86 Linux Save code below as hello.asm global _start section .data message: db 'hello, world!', 10 secti...